mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Add a bufferevent note to startup log
This should help us easily spot if a tor was built with --enable-bufferevent or not
This commit is contained in:
parent
cdbfc2a0c2
commit
b51e21c5d0
@ -2156,8 +2156,13 @@ tor_init(int argc, char *argv[])
|
||||
}
|
||||
quiet_level = quiet;
|
||||
|
||||
log(LOG_NOTICE, LD_GENERAL, "Tor v%s. This is experimental software. "
|
||||
"Do not rely on it for strong anonymity. (Running on %s)",get_version(),
|
||||
log(LOG_NOTICE, LD_GENERAL, "Tor v%s%s. This is experimental software. "
|
||||
"Do not rely on it for strong anonymity. (Running on %s)", get_version(),
|
||||
#ifdef USE_BUFFEREVENTS
|
||||
" (with bufferevents)",
|
||||
#else
|
||||
"",
|
||||
#endif
|
||||
get_uname());
|
||||
|
||||
if (network_init()<0) {
|
||||
|
Loading…
Reference in New Issue
Block a user