diff options
author | Roger Dingledine <arma@torproject.org> | 2005-05-27 17:43:43 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-05-27 17:43:43 +0000 |
commit | 4855990d378212d433f65ff960391ae56e5e1365 (patch) | |
tree | fbd2efa278c19cab73692d2b825369cb471d5301 /src/or/main.c | |
parent | fc83c5f16209cf96742ba8a2ae5d15ad5fc7e71a (diff) | |
download | tor-4855990d378212d433f65ff960391ae56e5e1365.tar.gz tor-4855990d378212d433f65ff960391ae56e5e1365.zip |
clean up a few more log entriestor-0.1.0.9-rctor-0.1.0.14tor-0.1.0.13tor-0.1.0.12tor-0.1.0.11tor-0.1.0.10
svn:r4304
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/main.c b/src/or/main.c index f0818c960d..ecda5691a8 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -818,11 +818,11 @@ static void second_elapsed_callback(int fd, short event, void *args) /* every 20 minutes, check and complain if necessary */ routerinfo_t *me = router_get_my_routerinfo(); if (!check_whether_orport_reachable()) - log_fn(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its ORPort is reachable. Please check your firewalls, ports, address, etc.", - me ? me->address : options->Address, options->ORPort); + log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its ORPort is reachable. Please check your firewalls, ports, address, etc.", + me ? me->address : options->Address, options->ORPort); if (!check_whether_dirport_reachable()) - log_fn(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its DirPort is reachable. Please check your firewalls, ports, address, etc.", - me ? me->address : options->Address, options->DirPort); + log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its DirPort is reachable. Please check your firewalls, ports, address, etc.", + me ? me->address : options->Address, options->DirPort); } /* if more than 100s have elapsed, probably the clock jumped: doesn't count. */ |