[tor-commits] [arm/master] Lowering unrecognized auth type to INFO
atagar at torproject.org
atagar at torproject.org
Fri Apr 27 02:35:12 UTC 2012
commit 1f7e23a01d08e6534ba04b1d81101fc4a70fe49f
Author: Damian Johnson <atagar at torproject.org>
Date: Thu Apr 26 19:18:18 2012 -0700
Lowering unrecognized auth type to INFO
Now that we have SafeCookie this is gonna be a common warning until we add
handling for it. This isn't a notice that should be user facing - it indicates
something useful to me, but not users.
---
src/util/torTools.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/util/torTools.py b/src/util/torTools.py
index 7676a97..5b70c6a 100644
--- a/src/util/torTools.py
+++ b/src/util/torTools.py
@@ -430,7 +430,7 @@ class FixedConnection(TorCtl.Connection):
# not of a recognized authentication type (new addition to the
# control-spec?)
- log.log(log.WARN, "Unrecognized authentication type: %s" % authEntry)
+ log.log(log.INFO, "Unrecognized authentication type: %s" % authEntry)
elif entry.startswith("COOKIEFILE=\"") and entry.endswith("\""):
# Quoted path of the authentication cookie. This only exists if we're
# using cookie auth and, of course, doesn't account for chroot.
More information about the tor-commits
mailing list