Skip to content

Commit

Permalink
Merge pull request #163 from nvllsvm/loglevel
Browse files Browse the repository at this point in the history
Change logging from info to debug
  • Loading branch information
mpenkov authored Nov 15, 2022
2 parents 4774476 + a2cfb05 commit 98a7991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlitedict.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def __init__(self, filename=None, tablename='unnamed', flag='c',
self.timeout = timeout
self._outer_stack = outer_stack

logger.info("opening Sqlite table %r in %r" % (tablename, filename))
logger.debug("opening Sqlite table %r in %r" % (tablename, filename))
self.conn = self._new_conn()
if self.flag == 'r':
if self.tablename not in SqliteDict.get_tablenames(self.filename):
Expand Down

0 comments on commit 98a7991

Please sign in to comment.