From 6e43340acbd097f2127a49c4ae33955c5d09dbeb Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 17 Jul 2019 17:55:20 -0600 Subject: [PATCH] Adjusted debug logging --- scripts/wk/std.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/wk/std.py b/scripts/wk/std.py index 174c4e92..4c786149 100644 --- a/scripts/wk/std.py +++ b/scripts/wk/std.py @@ -90,7 +90,6 @@ def input_text(prompt='Enter text'): def pause(prompt='Press Enter to continue... '): """Simple pause implementation.""" - LOG.debug('prompt: %s', prompt) input_text(prompt) @@ -161,7 +160,6 @@ def strip_colors(string): def sleep(seconds=2): """Simple wrapper for time.sleep.""" - LOG.debug('Sleeping for %s seconds', seconds) time.sleep(seconds)