commit 1da39db2bb46536fa3ef9227f249620859c18b6f Author: juga0 juga@riseup.net Date: Sat Aug 4 05:17:29 2018 +0000
Revert "Warn when exception might be caused by no disk space"
This reverts commit 72b45d4d5b5ccd7228ab793012ba7d42084ddfbf. --- sbws/lib/circuitbuilder.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/sbws/lib/circuitbuilder.py b/sbws/lib/circuitbuilder.py index 66687b0..e3b3950 100644 --- a/sbws/lib/circuitbuilder.py +++ b/sbws/lib/circuitbuilder.py @@ -65,9 +65,7 @@ class CircuitBuilder: pass self.built_circuits.discard(circ_id) except (ControllerError, ValueError) as e: - log.warning("Error trying to get circuit to close it: %s.", e, - "If sbws didn't receive SIGHUP, " - "maybe this system run out of disk space.") + log.exception("Error trying to get circuit to close it: %s.", e)
def _build_circuit_impl(self, path): if not valid_circuit_length(path):