diff options
author | Roger Dingledine <arma@torproject.org> | 2009-09-21 03:32:28 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-09-21 03:32:28 -0400 |
commit | 54ba86d9d0cff2ceef75d564ece3d7d2ea26af26 (patch) | |
tree | cc5b7aa467419ae63f394e9e3929c38eac316915 /src | |
parent | 3ddd7212e6a62d138a9fa634d938f007ed0a4323 (diff) | |
download | tor-54ba86d9d0cff2ceef75d564ece3d7d2ea26af26.tar.gz tor-54ba86d9d0cff2ceef75d564ece3d7d2ea26af26.zip |
downgrade a log severity, since this event has been knowntor-0.2.2.2-alpha
to happen and there's nothing the user can do about it
Diffstat (limited to 'src')
-rw-r--r-- | src/or/rendclient.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 35fa58ff5d..0ade46807c 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -91,9 +91,9 @@ rend_client_send_introduction(origin_circuit_t *introcirc, } }); if (!intro_key) { - /* XXX022 Karsten: should this turn into a log_info, a la bug 1073? */ - log_warn(LD_BUG, "Internal error: could not find intro key; we " - "only have a v2 rend desc with %d intro points.", + log_info(LD_REND, "Our introduction point knowledge changed in " + "mid-connect! Could not find intro key; we only have a " + "v2 rend desc with %d intro points. Giving up.", smartlist_len(entry->parsed->intro_nodes)); goto err; } |