1
0

logging - use self.print_error instead of util.print_error

This commit is contained in:
SomberNight
2018-03-09 14:58:13 +01:00
parent c13e057701
commit 08aee6a857
2 changed files with 2 additions and 2 deletions

View File

@@ -677,7 +677,7 @@ class Network(util.DaemonThread):
# check cached response for subscriptions
r = self.sub_cache.get(k)
if r is not None:
util.print_error("cache hit", k)
self.print_error("cache hit", k)
callback(r)
else:
message_id = self.queue_request(method, params)