From 4f51af7183116b8ef39eea60833326e079cc8885 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 25 Jan 2016 16:37:01 +0200 Subject: Change log levesl to debug, not warning --- yarn | 9 +++++---- 1 file 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) -- cgit v1.2.1