diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-03-17 04:07:51 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-03-17 04:07:51 +0000 |
commit | e6b617bf0555054e5a3e20748ef27dfd9e75af13 (patch) | |
tree | d46e5cb7ccf009de073de94146d68610faadb773 /src/or/directory.c | |
parent | c59f66709d024dfb112d1f648b14aeec057e1308 (diff) | |
download | tor-e6b617bf0555054e5a3e20748ef27dfd9e75af13.tar.gz tor-e6b617bf0555054e5a3e20748ef27dfd9e75af13.zip |
r18872@catbus: nickm | 2008-03-16 23:56:48 -0400
Only dump all guard node status to the log when the guard node status actually changes. Downgrade the 4 most common remaining INFO log messages to DEBUG.
svn:r14069
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index ebcfc70b43..9b08f96e67 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -2209,7 +2209,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers, dlen = compressed ? d->dir_z_len : d->dir_len; if (global_write_bucket_low(TO_CONN(conn), dlen, 1)) { - log_info(LD_DIRSERV, + log_debug(LD_DIRSERV, "Client asked for the mirrored directory, but we've been " "writing too many bytes lately. Sending 503 Dir busy."); write_http_status_line(conn, 503, "Directory busy, try again later"); @@ -2314,7 +2314,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers, dlen = dirserv_estimate_data_size(dir_fps, 0, compressed); if (global_write_bucket_low(TO_CONN(conn), dlen, 2)) { - log_info(LD_DIRSERV, + log_debug(LD_DIRSERV, "Client asked for network status lists, but we've been " "writing too many bytes lately. Sending 503 Dir busy."); write_http_status_line(conn, 503, "Directory busy, try again later"); |