[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] make it more pleasant to be told you"re using libevent
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
config.c
Log Message:
make it more pleasant to be told you're using libevent
Index: config.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/config.c,v
retrieving revision 1.367
retrieving revision 1.368
diff -u -d -r1.367 -r1.368
--- config.c 13 Jul 2005 05:14:42 -0000 1.367
+++ config.c 13 Jul 2005 21:22:34 -0000 1.368
@@ -2646,12 +2646,12 @@
#if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
/* Making this a NOTICE for now so we can link bugs to a libevent versions
* or methods better. */
- log(LOG_NOTICE, "Initialized libevent version %s using method %s",
+ log(LOG_NOTICE, "Initialized libevent version %s using method %s. Good.",
event_get_version(), event_get_method());
check_libevent_version(event_get_method(), event_get_version(),
get_options()->ORPort != 0);
#else
- log(LOG_NOTICE, "Initialized old libevent (version 1.0b or earlier)");
+ log(LOG_NOTICE, "Initialized old libevent (version 1.0b or earlier).");
log(LOG_WARN, "You have a very old version of libevent. It is likely to be buggy; please consider building Tor with a more recent version.");
#endif