summaryrefslogtreecommitdiff
path: root/src/or/directory.c
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2005-10-17 16:21:42 +0000
committerPeter Palfrader <peter@palfrader.org>2005-10-17 16:21:42 +0000
commit0d9aedfcea6d9b9f2e36bcc6176da8ac0f31a9b0 (patch)
treeb4e573d9050e828ba4bc6659f3db42f31a4667e7 /src/or/directory.c
parentbec2271029463b426a9c87330ff392b9807d62ec (diff)
downloadtor-0d9aedfcea6d9b9f2e36bcc6176da8ac0f31a9b0.tar.gz
tor-0d9aedfcea6d9b9f2e36bcc6176da8ac0f31a9b0.zip
Downgrade a few INFO level logs to DEBUG again. Also add two or three new
logs in cases where a calling function's log was downgraded and we wouldn't get any log message otherwise. svn:r5263
Diffstat (limited to 'src/or/directory.c')
-rw-r--r--src/or/directory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index ffb51d3a9c..0086a695e7 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -844,7 +844,7 @@ connection_dir_client_reached_eof(connection_t *conn)
abs(delta)/60, delta>0 ? "behind" : "ahead");
skewed = 1; /* don't check the recommended-versions line */
} else {
- log_fn(LOG_INFO, "Time on received directory is within tolerance; we are %d seconds skewed. (That's okay.)", delta);
+ log_fn(LOG_DEBUG, "Time on received directory is within tolerance; we are %d seconds skewed. (That's okay.)", delta);
}
}
@@ -1576,7 +1576,7 @@ connection_dir_finished_connecting(connection_t *conn)
tor_assert(conn->type == CONN_TYPE_DIR);
tor_assert(conn->state == DIR_CONN_STATE_CONNECTING);
- log_fn(LOG_INFO,"Dir connection to router %s:%u established.",
+ log_fn(LOG_DEBUG,"Dir connection to router %s:%u established.",
conn->address,conn->port);
conn->state = DIR_CONN_STATE_CLIENT_SENDING; /* start flushing conn */