summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-01-25 16:37:01 +0200
committerLars Wirzenius <liw@liw.fi>2016-01-25 16:43:20 +0200
commit4f51af7183116b8ef39eea60833326e079cc8885 (patch)
tree3ecdffcf0107809f4cc205fda27dfbd882014131
parentba02bc7f44393683590ff8e013396c261c2ccf81 (diff)
downloadcmdtest-4f51af7183116b8ef39eea60833326e079cc8885.tar.gz
Change log levesl to debug, not warning
-rwxr-xr-xyarn9
1 files changed, 5 insertions, 4 deletions
diff --git a/yarn b/yarn
index f36bbd4..cc41177 100755
--- a/yarn
+++ b/yarn
@@ -466,11 +466,12 @@ class YarnRunner(cliapp.Application):
f.flush()
shell = self.settings['shell']
shell_args = [x for x in self.settings['shell-arg'] if x]
- logging.warning('shell: %r', shell)
- logging.warning('shell_args: %r', shell_args)
- logging.warning('shell_script: %r', shell_script)
+ logging.debug('shell: %r', shell)
+ logging.debug('shell_args: %r', shell_args)
+ logging.debug('shell_script: %r', shell_script)
exit, stdout, stderr = cliapp.runcmd_unchecked(
- [shell] + shell_args + [shell_script], env=env, cwd=cwd)
+ [shell] + shell_args + [shell_script],
+ env=env, cwd=cwd)
os.remove(shell_script)
logging.debug('Exit code: %d' % exit)