summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-11-10 03:08:03 +0000
committerRoger Dingledine <arma@torproject.org>2004-11-10 03:08:03 +0000
commitd9a74cd0afb4dbb4a0b5278db23daa8ea447e916 (patch)
tree35fbef248445ef66b848c17b576c67131ee12a87
parentc03a3eaed0e0147fcbcf4c2bdfd6a73f996aa160 (diff)
downloadtor-d9a74cd0afb4dbb4a0b5278db23daa8ea447e916.tar.gz
tor-d9a74cd0afb4dbb4a0b5278db23daa8ea447e916.zip
make it more obvious that we have just told them their new torrc log line.
svn:r2772
-rw-r--r--src/or/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index c02d651b0c..8aca8f9be5 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -1614,7 +1614,7 @@ add_single_log_option(or_options_t *options, int minSeverity, int maxSeverity,
return -1;
}
- log_fn(LOG_WARN, "The old LogLevel/LogFile/DebugLogFile/SysLog options are deprecated, and will go away soon. New format: 'Log %s'", buf);
+ log(LOG_WARN, "The old LogLevel/LogFile/DebugLogFile/SysLog options are deprecated, and will go away soon. Your new torrc line should be: 'Log %s'", buf);
options->Logs = config_line_prepend(options->Logs, "Log", buf);
return 0;
}