Browse Source

better warn message for failed hidserv desc fetch

svn:r2412
Roger Dingledine 21 years ago
parent
commit
5e74ce8d57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/rendclient.c

+ 1 - 1
src/or/rendclient.c

@@ -385,7 +385,7 @@ void rend_client_desc_fetched(char *query, int success) {
         connection_mark_for_close(conn);
         connection_mark_for_close(conn);
       }
       }
     } else { /* 404, or fetch didn't get that far */
     } else { /* 404, or fetch didn't get that far */
-      log_fn(LOG_WARN,"service id '%s' fetched failed, and not in cache. Closing conn.", query);
+      log_fn(LOG_WARN,"Failed to fetch service id '%s', and not in cache. Closing conn.", query);
       conn->has_sent_end = 1;
       conn->has_sent_end = 1;
       connection_mark_for_close(conn);
       connection_mark_for_close(conn);
     }
     }