[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r12431: make the complaints about missing v2hidserv directories quie (tor/trunk/src/or)
Author: arma
Date: 2007-11-07 23:21:35 -0500 (Wed, 07 Nov 2007)
New Revision: 12431
Modified:
tor/trunk/src/or/directory.c
tor/trunk/src/or/routerlist.c
Log:
make the complaints about missing v2hidserv directories quieter,
at least until we're *supposed* to have any of them.
Modified: tor/trunk/src/or/directory.c
===================================================================
--- tor/trunk/src/or/directory.c 2007-11-08 04:19:51 UTC (rev 12430)
+++ tor/trunk/src/or/directory.c 2007-11-08 04:21:35 UTC (rev 12431)
@@ -3166,7 +3166,8 @@
tor_assert(strlen(query) == REND_SERVICE_ID_LEN);
/* Determine responsible dirs. */
if (hid_serv_get_responsible_directories(responsible_dirs, desc_id) < 0) {
- log_warn(LD_REND, "Could not determine the responsible hidden service "
+ /* XXX020 make this louder once we have some v2hidservs */
+ log_info(LD_REND, "Could not determine the responsible hidden service "
"directories to fetch descriptors.");
smartlist_free(responsible_dirs);
return;
Modified: tor/trunk/src/or/routerlist.c
===================================================================
--- tor/trunk/src/or/routerlist.c 2007-11-08 04:19:51 UTC (rev 12430)
+++ tor/trunk/src/or/routerlist.c 2007-11-08 04:21:35 UTC (rev 12431)
@@ -4471,7 +4471,8 @@
i = 0;
} while (i != start);
- log_warn(LD_REND, "We don't have enough hidden service directories to "
+ /* XXX020 make this louder once we have some v2hidservs */
+ log_info(LD_REND, "We don't have enough hidden service directories to "
"perform v2 rendezvous operations!");
return -1;
}