From fa05c1b21b4ea738de45fd05f3492067605bb486 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sun, 8 Jan 2006 22:16:30 +0000 Subject: remove the loud logging of busted rendezvous descriptors svn:r5758 --- src/or/directory.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/or/directory.c') diff --git a/src/or/directory.c b/src/or/directory.c index 95fc6efaad..d8611cab00 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1640,13 +1640,15 @@ directory_handle_command_post(connection_t *conn, char *headers, if (!strcmpstart(url,"/tor/rendezvous/publish")) { /* rendezvous descriptor post */ if (rend_cache_store(body, body_len) < 0) { - char tmp[1024*2+1]; +// char tmp[1024*2+1]; notice(LD_DIRSERV,"Rejected rend descriptor (length %d) from %s.", (int)body_len, origin); +#if 0 if (body_len <= 1024) { base16_encode(tmp, sizeof(tmp), body, body_len); notice(LD_DIRSERV,"Body was: %s", tmp); } +#endif write_http_status_line(conn, 400, "Invalid service descriptor rejected"); } else { write_http_status_line(conn, 200, "Service descriptor stored"); -- cgit v1.2.3-54-g00ecf