Browse Source

Log when we retry a directory connection

svn:r3258
Nick Mathewson 19 years ago
parent
commit
d1fc7ad94b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/directory.c

+ 2 - 1
src/or/directory.c

@@ -229,7 +229,8 @@ connection_dir_connect_failed(connection_t *conn)
   router_mark_as_down(conn->identity_digest); /* don't try him again */
   if (conn->purpose == DIR_PURPOSE_FETCH_DIR ||
       conn->purpose == DIR_PURPOSE_FETCH_RUNNING_LIST) {
-    log_fn(LOG_INFO, "Giving up on directory server at '%s'; retrying");
+    log_fn(LOG_INFO, "Giving up on directory server at '%s'; retrying",
+           conn->address);
     directory_get_from_dirserver(conn->purpose, NULL,
                                  0 /* don't retry_if_no_servers */);
   }