updating command logging back to debug

This commit is contained in:
Blake Harnden 2019-10-22 12:19:37 -07:00
parent f39b7e9f96
commit b703ad11c6
3 changed files with 3 additions and 3 deletions

View file

@ -206,7 +206,7 @@ def cmd(args, env=None, cwd=None, wait=True, shell=False):
:raises CoreCommandError: when there is a non-zero exit status or the file to
execute is not found
"""
logging.info("command cwd(%s) wait(%s): %s", cwd, wait, args)
logging.debug("command cwd(%s) wait(%s): %s", cwd, wait, args)
if shell is False:
args = shlex.split(args)
try: