]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
vidalia asks us for the value of the Group config option. but now
authorRoger Dingledine <arma@torproject.org>
Fri, 7 Nov 2008 04:38:58 +0000 (04:38 +0000)
committerRoger Dingledine <arma@torproject.org>
Fri, 7 Nov 2008 04:38:58 +0000 (04:38 +0000)
it's obsolete. which causes us to inform the user every time, even
though the user can't do anything about it other than get confused.

now it's an info-level log by default.

svn:r17206

src/or/config.c

index 397d77b7d9b37b16ef84e3badc0d549c11848f9a..575b4f7cac88e0ea332d93fb1562640facf132ec 100644 (file)
@@ -1988,9 +1988,9 @@ get_assigned_option(config_format_t *fmt, or_options_t *options,
         result->value = tor_strdup("");
       break;
     case CONFIG_TYPE_OBSOLETE:
-      log_warn(LD_CONFIG,
-               "You asked me for the value of an obsolete config option '%s'.",
-               key);
+      log_fn(LOG_PROTOCOL_WARN, LD_CONFIG,
+             "You asked me for the value of an obsolete config option '%s'.",
+             key);
       tor_free(result->key);
       tor_free(result);
       return NULL;