Skip to content

Commit bb1839c

Browse files
authored
Align spacing of one log message (#926)
1 parent 3f5074c commit bb1839c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/neo4j/_async/io/_bolt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ async def _set_defunct(self, message, error=None, silent=False):
837837
user_cancelled = isinstance(error, asyncio.CancelledError)
838838

839839
if error:
840-
log.debug("[#%04X] _: <CONNECTION> error: %r", self.local_port,
840+
log.debug("[#%04X] _: <CONNECTION> error: %r", self.local_port,
841841
error)
842842
if not user_cancelled:
843843
log.error(message)

Diff for: src/neo4j/_sync/io/_bolt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ def _set_defunct(self, message, error=None, silent=False):
837837
user_cancelled = isinstance(error, asyncio.CancelledError)
838838

839839
if error:
840-
log.debug("[#%04X] _: <CONNECTION> error: %r", self.local_port,
840+
log.debug("[#%04X] _: <CONNECTION> error: %r", self.local_port,
841841
error)
842842
if not user_cancelled:
843843
log.error(message)

0 commit comments

Comments
 (0)