Set logging of SQL queries to sqlite as debug log messages
This commit is contained in:
parent
3c3eadbef5
commit
7e42b35b62
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ class Recorder(threading.Thread):
|
|||
""" Query the database. """
|
||||
try:
|
||||
with self.conn, self.lock:
|
||||
_LOGGER.info("Running query %s", sql_query)
|
||||
_LOGGER.debug("Running query %s", sql_query)
|
||||
|
||||
cur = self.conn.cursor()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue