]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Quiet "Set buildtimeout to low val" warnings: make them info
authorNick Mathewson <nickm@torproject.org>
Mon, 27 Aug 2012 20:37:09 +0000 (16:37 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 27 Aug 2012 20:37:09 +0000 (16:37 -0400)
Fix for #6251

changes/bug6251 [new file with mode: 0644]
src/or/circuitbuild.c

diff --git a/changes/bug6251 b/changes/bug6251
new file mode 100644 (file)
index 0000000..c782a93
--- /dev/null
@@ -0,0 +1,6 @@
+  o Minor bugfixes:
+    - Downgrade "set buildtimeout to low value" messages to INFO
+      severity; they were never an actual problem, there was never
+      anything reasonable to do about them, and they tended to spam
+      logs from time to time. Fix for bug 6251; bugfix on
+      0.2.2.2-alpha.
\ No newline at end of file
index fcd13dc1d36811cf7b2bffa0d5366b10022857bb..e5576018a61d8ae9c8f76a63ef6ee3d169503112 100644 (file)
@@ -1627,7 +1627,7 @@ circuit_build_times_set_timeout(circuit_build_times_t *cbt)
     return;
 
   if (cbt->timeout_ms < circuit_build_times_min_timeout()) {
-    log_warn(LD_CIRC, "Set buildtimeout to low value %fms. Setting to %dms",
+    log_info(LD_CIRC, "Set buildtimeout to low value %fms. Setting to %dms",
              cbt->timeout_ms, circuit_build_times_min_timeout());
     cbt->timeout_ms = circuit_build_times_min_timeout();
     if (cbt->close_ms < cbt->timeout_ms) {