Skip to content

Commit

Permalink
reference logger instead of copying
Browse files Browse the repository at this point in the history
  • Loading branch information
hclivess committed Nov 30, 2019
1 parent 71e616d commit b327e11
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions connectionmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ class ConnectionManager (threading.Thread):
def __init__(self, node, mp):
threading.Thread.__init__(self, name="ConnectionManagerThread")
self.node = node
self.db_lock = node.db_lock
self.logger = node.logger
self.logger = self.node.logger
self.mp = mp

def run(self):
Expand Down

0 comments on commit b327e11

Please sign in to comment.