Namecoin error logging changes

- namecoin connection errors have now severity "info" instead of
  "error", because it just confuses peopel who don't have namecoin
  configured
- partially addresses #893
This commit is contained in:
Peter Šurda 2016-08-29 12:13:08 +08:00
parent 61a08299b8
commit 59dba6a7c7
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 3 additions and 3 deletions

View File

@ -158,7 +158,7 @@ class namecoinConnection (object):
assert False assert False
except Exception: except Exception:
logger.exception("Namecoin connection test failure") logger.info("Namecoin connection test failure")
return ('failed', "The connection to namecoin failed.") return ('failed', "The connection to namecoin failed.")
# Helper routine that actually performs an JSON RPC call. # Helper routine that actually performs an JSON RPC call.
@ -208,9 +208,9 @@ class namecoinConnection (object):
if resp.status != 200: if resp.status != 200:
raise Exception ("Namecoin returned status %i: %s", resp.status, resp.reason) raise Exception ("Namecoin returned status %i: %s", resp.status, resp.reason)
except: except:
logger.error("HTTP receive error") logger.info("HTTP receive error")
except: except:
logger.error("HTTP connection error", exc_info=True) logger.info("HTTP connection error")
return result return result