diff options
Diffstat (limited to 'python/walmgr.py')
-rwxr-xr-x | python/walmgr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/walmgr.py b/python/walmgr.py index d44466ed..bf9cf7a0 100755 --- a/python/walmgr.py +++ b/python/walmgr.py @@ -261,7 +261,7 @@ class WalMgr(skytools.DBScript): return res = os.spawnvp(os.P_WAIT, cmdline[0], cmdline) if res != 0: - self.log.fatal("exec failed, res=%d" % res) + self.log.fatal("exec failed, res=%d (%s)" % (res, repr(cmdline))) sys.exit(1) def chdir(self, loc): |