Skip to content

Commit ecaf57d

Browse files
committed
Change some log messages to debug level
1 parent 2e44e74 commit ecaf57d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

syncrypt/backends/binary.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,8 @@ def init(self):
724724
self.loop = None
725725
self.loop = asyncio.get_event_loop()
726726
if not self.slots:
727-
logger.info('Registering connection slots for id=%s', id(asyncio.get_event_loop()))
727+
logger.debug('Registering %d connection slots for loop %s',
728+
self.concurrency, id(asyncio.get_event_loop()))
728729
self.slots = [BinaryStorageConnection(self) for i in range(self.concurrency)]
729730

730731
def get_active_connection_count(self):
@@ -854,7 +855,7 @@ def global_auth(self):
854855
def global_auth(self, value):
855856
manager = get_manager_instance()
856857
if not manager.global_auth or value is None:
857-
logger.warning('Setting global_auth to %s', value)
858+
logger.debug('Setting global_auth to %s', value)
858859
manager.global_auth = value
859860

860861
def set_auth(self, username, password):

0 commit comments

Comments
 (0)