diff options
author | Roger Dingledine <arma@torproject.org> | 2008-11-07 04:38:58 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-11-07 04:38:58 +0000 |
commit | bc128c0b034d035ed60414a56d670f4b4274e3c4 (patch) | |
tree | f5010ab9addb9c58176781bee8d9c4c2a604e5eb /src | |
parent | b32e600d5009b8cc4179f00f4656dd61f3566e24 (diff) | |
download | tor-bc128c0b034d035ed60414a56d670f4b4274e3c4.tar tor-bc128c0b034d035ed60414a56d670f4b4274e3c4.tar.gz |
vidalia asks us for the value of the Group config option. but now
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
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c index 397d77b7d..575b4f7ca 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -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; |