From dadf2c3211ab1b61c7c4e3aab465e98822ff2102 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 22 Dec 2019 22:32:10 -0800 Subject: [PATCH] structures: suppress CopyWrapper logging --- structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures.py b/structures.py index 418b034..e81560f 100644 --- a/structures.py +++ b/structures.py @@ -46,7 +46,7 @@ class CopyWrapper(): for attr, val in self.__dict__.items(): # We can't pickle IRCNetwork, so just return a reference of it. if not isinstance(val, tuple(_BLACKLISTED_COPY_TYPES)): - log.debug('CopyWrapper: copying attr %r', attr) + #log.debug('CopyWrapper: copying attr %r', attr) setattr(newobj, attr, deepcopy(val)) memo[id(self)] = newobj