]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
make it more obvious that we have just told them their new torrc log line.
authorRoger Dingledine <arma@torproject.org>
Wed, 10 Nov 2004 03:08:03 +0000 (03:08 +0000)
committerRoger Dingledine <arma@torproject.org>
Wed, 10 Nov 2004 03:08:03 +0000 (03:08 +0000)
svn:r2772

src/or/config.c

index c02d651b0ce432fc2d0be586e22eece6212c0c1c..8aca8f9be53a88fbe5ebf1469bdee7c29c0a1fc3 100644 (file)
@@ -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;
 }