]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
bump an info message down to a debug
authorRoger Dingledine <arma@torproject.org>
Thu, 3 Jun 2004 05:57:27 +0000 (05:57 +0000)
committerRoger Dingledine <arma@torproject.org>
Thu, 3 Jun 2004 05:57:27 +0000 (05:57 +0000)
svn:r1947

src/or/cpuworker.c

index 943ca664021608184177166661905fe867c09fc0..94a2238b62cfbf8b8b5fb66a8991b2ff89ef3829 100644 (file)
@@ -234,7 +234,7 @@ static int cpuworker_main(void *data) {
         memset(buf,0,LEN_ONION_RESPONSE); /* send all zeros for failure */
       } else {
         /* success */
-        log_fn(LOG_INFO,"onion_skin_server_handshake succeeded.");
+        log_fn(LOG_DEBUG,"onion_skin_server_handshake succeeded.");
         buf[0] = 1; /* 1 means success */
         memcpy(buf+1,tag,TAG_LEN);
         memcpy(buf+1+TAG_LEN,reply_to_proxy,ONIONSKIN_REPLY_LEN);