From 91c68cd07d3575472befa034756dfabe0bda6b2f Mon Sep 17 00:00:00 2001 From: Jorge <99655943+jorge-cervest@users.noreply.github.com> Date: Tue, 25 Oct 2022 16:08:38 +0100 Subject: [PATCH] Changed timer verbosity of the logging to DEBUG (#186) The current INFO level is too verbose --- stackstac/timer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackstac/timer.py b/stackstac/timer.py index 4a5a52c..ad68c22 100644 --- a/stackstac/timer.py +++ b/stackstac/timer.py @@ -6,7 +6,7 @@ @contextmanager -def time(statement: str, level=logging.INFO): +def time(statement: str, level=logging.DEBUG): start = default_timer() error = None try: