[tor-commits] [sbws/master] stem: lower log level when parsing Tor options

juga at torproject.org juga at torproject.org
Wed Jan 9 17:12:00 UTC 2019


commit 830ef6b68c19e690a8015ba408eaea9b7cca0a8d
Author: juga0 <juga at riseup.net>
Date:   Thu Dec 6 19:59:08 2018 +0000

    stem: lower log level when parsing Tor options
---
 sbws/util/stem.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sbws/util/stem.py b/sbws/util/stem.py
index d2fa5d8..aa4fa69 100644
--- a/sbws/util/stem.py
+++ b/sbws/util/stem.py
@@ -141,8 +141,8 @@ def parse_user_torrc_config(torrc, torrc_text):
             fail_hard('All torrc lines must have 2 or more words. "%s" has '
                       'fewer', line)
         key, value = kv
-        log.info('Adding "%s %s" to torrc with which we are launching Tor',
-                 key, value)
+        log.debug('Adding "%s %s" to torrc with which we are launching Tor',
+                  key, value)
         # It's really easy to add to the torrc if the key doesn't exist
         if key not in torrc:
             torrc_dict.update({key: value})





More information about the tor-commits mailing list