squelch very verbose dht error log
This commit is contained in:
parent
5285982515
commit
defbd73b4f
1 changed files with 3 additions and 3 deletions
|
@ -240,9 +240,9 @@ class Node(object):
|
||||||
known_nodes = {}
|
known_nodes = {}
|
||||||
|
|
||||||
def log_error(err, n):
|
def log_error(err, n):
|
||||||
log.error("error storing blob_hash %s at %s", binascii.hexlify(blob_hash), str(n))
|
log.debug("error storing blob_hash %s at %s", binascii.hexlify(blob_hash), str(n))
|
||||||
log.error(err.getErrorMessage())
|
log.debug(err.getErrorMessage())
|
||||||
log.error(err.getTraceback())
|
log.debug(err.getTraceback())
|
||||||
|
|
||||||
def log_success(res):
|
def log_success(res):
|
||||||
log.debug("Response to store request: %s", str(res))
|
log.debug("Response to store request: %s", str(res))
|
||||||
|
|
Loading…
Reference in a new issue