diff options
author | Roger Dingledine <arma@torproject.org> | 2013-10-01 08:55:57 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2013-10-01 08:55:57 -0400 |
commit | a980d844cd66bd2fb9d2581e5d5b9d98ae8b21d0 (patch) | |
tree | b0d40f2c961cd9e4839c09f968250ec7dfc51f14 /src/or/config.c | |
parent | b484711a51915bbb8223295cc884236229b64a4a (diff) | |
download | tor-a980d844cd66bd2fb9d2581e5d5b9d98ae8b21d0.tar tor-a980d844cd66bd2fb9d2581e5d5b9d98ae8b21d0.tar.gz |
what is logging "above" notice?
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c index 79234aabc..985bebd59 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1171,9 +1171,10 @@ options_act_reversible(const or_options_t *old_options, char **msg) } if (get_min_log_level() >= LOG_INFO && get_min_log_level() != old_min_log_level) { - log_warn(LD_GENERAL, "Your log may contain sensitive information - you're " - "logging above \"notice\". Please log safely. Don't log unless " - "it serves an important reason. Overwrite the log afterwards."); + log_warn(LD_GENERAL, "Your log may contain sensitive information: you're " + "logging more than \"notice\". Please log safely. Don't log " + "unless it serves an important reason, and overwrite the log " + "afterwards."); } SMARTLIST_FOREACH(replaced_listeners, connection_t *, conn, |