--- tor-0.1.2.17/src/or/routerlist.c~ 2007-08-26 00:42:32.000000000 +0300 +++ tor-0.1.2.17/src/or/routerlist.c 2007-10-20 12:56:56.949181537 +0300 @@ -804,7 +804,7 @@ add_nickname_list_to_smartlist(smartlist } } else if (!router_get_combined_status_by_nickname(nick,1)) { if (!warned) { - log_fn(have_dir_info ? LOG_WARN : LOG_INFO, LD_CONFIG, + log_fn(LOG_DEBUG, LD_CONFIG, "Nickname list includes '%s' which isn't a known router.",nick); smartlist_add(warned_nicknames, tor_strdup(nick)); } @@ -1375,7 +1375,7 @@ router_get_by_nickname(const char *nickn }); if (any_unwarned) { char *alternatives = smartlist_join_strings(fps, "; ",0,NULL); - log_warn(LD_CONFIG, + log_debug(LD_CONFIG, "There are multiple matches for the nickname \"%s\"," " but none is listed as named by the directory authorities. " "Choosing one arbitrarily. If you meant one in particular, " @@ -1391,7 +1391,7 @@ router_get_by_nickname(const char *nickn char fp[HEX_DIGEST_LEN+1]; base16_encode(fp, sizeof(fp), best_match->cache_info.identity_digest, DIGEST_LEN); - log_warn(LD_CONFIG, "You specified a server \"%s\" by name, but this " + log_debug(LD_CONFIG, "You specified a server \"%s\" by name, but this " "name is not registered, so it could be used by any server, " "not just the one you meant. " "To make sure you get the same server in the future, refer to " @@ -2836,7 +2836,7 @@ router_get_combined_status_by_nickname(c } }); if (any_unwarned) { - log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\"," + log_debug(LD_CONFIG,"There are multiple matches for the nickname \"%s\"," " but none is listed as named by the directory authorites. " "Choosing one arbitrarily.", nickname); } @@ -2844,7 +2844,7 @@ router_get_combined_status_by_nickname(c char fp[HEX_DIGEST_LEN+1]; base16_encode(fp, sizeof(fp), best->status.identity_digest, DIGEST_LEN); - log_warn(LD_CONFIG, + log_debug(LD_CONFIG, "When looking up a status, you specified a server \"%s\" by name, " "but the directory authorities do not have any key registered for " "this nickname -- so it could be used by any server, "