diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-30 00:06:59 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-30 00:06:59 +0000 |
commit | f796957182e1917e455f8ff658f8509e786eb53c (patch) | |
tree | 239295c483042e9117ff5a4083ca89fa984b33b6 /src | |
parent | 015f7229573a5c30401844da1326556b536a8afb (diff) | |
download | tor-f796957182e1917e455f8ff658f8509e786eb53c.tar tor-f796957182e1917e455f8ff658f8509e786eb53c.tar.gz |
don't freak people out as much with the warning message
svn:r1378
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index a472f7ea4..4bec39d04 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -501,7 +501,7 @@ int getconfig(int argc, char **argv, or_options_t *options) { cf = config_open(fname); if(!cf) { if(using_default_torrc == 1) { - log(LOG_WARN, "Configuration file '%s' not found. Using defaults.",fname); + log(LOG_WARN, "Configuration file '%s' not found, using defaults (this is fine).",fname); /* XXX change this WARN to INFO once we start using this feature */ if(config_assign_default(options) < 0) return -1; |