[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] shorten more of the startup log messages
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
main.c
Log Message:
shorten more of the startup log messages
Index: main.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/main.c,v
retrieving revision 1.587
retrieving revision 1.588
diff -u -d -r1.587 -r1.588
--- main.c 4 Nov 2005 05:00:12 -0000 1.587
+++ main.c 14 Nov 2005 04:39:49 -0000 1.588
@@ -547,12 +547,12 @@
or_options_t *options = get_options();
if (!router_have_minimum_dir_info()) {
- notice(LD_DIR, "I learned some more directory information, but not enough to build a circuit.");
+ log(LOG_NOTICE, LD_DIR, "I learned some more directory information, but not enough to build a circuit.");
return;
}
if (!has_fetched_directory) {
- notice(LD_DIR, "We have enough directory information to build circuits.");
+ log(LOG_NOTICE, LD_DIR, "We have enough directory information to build circuits.");
}
has_fetched_directory=1;