From bd31da13753c93e606b245a0956cd034154316d4 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 19 Jun 2011 18:43:23 +0100 Subject: Add more logging to runcmd. --- unperish | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unperish b/unperish index c6345d2..bb04087 100755 --- a/unperish +++ b/unperish @@ -217,7 +217,9 @@ class Unperish(cliapp.Application): return os.path.join(*components) def runcmd(self, argv, *args, **kwargs): - logging.debug('runcmd: %s' % repr(argv)) + logging.debug('runcmd: argv: %s' % repr(argv)) + logging.debug('runcmd: args: %s' % repr(args)) + logging.debug('runcmd: kwargs: %s' % repr(kwargs)) if self.settings['verbose']: self.output.write('run: %s\n' % ' '.join(argv)) return cliapp.Application.runcmd(self, argv, *args, **kwargs) -- cgit v1.2.1