diff options
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 19c0d70ef..2677d8bcd 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -377,7 +377,8 @@ router_resolve(routerinfo_t *router) rent = (struct hostent *)gethostbyname(router->address); if (!rent) { - log_fn(LOG_WARN,"Could not get address for router %s.",router->address); + log_fn(LOG_WARN,"Could not get address for router %s (%s).", + router->address, router->nickname); return -1; } assert(rent->h_length == 4); |