Adjusted debug logging

This commit is contained in:
2Shirt 2019-07-17 17:55:20 -06:00
parent b0aa7b0218
commit 6e43340acb
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -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)