Less logging

- Fixes #482
This commit is contained in:
croneter 2018-06-03 14:04:11 +02:00
parent 0486934d81
commit 9b1085c134

View file

@ -678,7 +678,7 @@ class KodiDBMethods(object):
self.cursor.execute(query, (path,)) self.cursor.execute(query, (path,))
path_id = self.cursor.fetchall() path_id = self.cursor.fetchall()
if len(path_id) != 1: if len(path_id) != 1:
LOG.error('Found wrong number of path ids: %s for path %s, abort', LOG.debug('Found wrong number of path ids: %s for path %s, abort',
path_id, path) path_id, path)
return return
query = ''' query = '''