add an asterisk for log readers

This commit is contained in:
Martin A. Brown 2016-02-23 22:44:39 -08:00
parent fc2cdf975d
commit 7db6bb842e
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def execute(cmd, stdin=None, stdout=None, stderr=None,
result = proc.wait()
if result != 0:
logger.warning("Return code (%s) for process: %r", result, cmd)
logger.warning("Find STDOUT/STDERR in %s/%s", logdir, prefix)
logger.warning("Find STDOUT/STDERR in %s/%s*", logdir, prefix)
if isinstance(stdout, int) and stdoutname:
os.close(stdout)
if isinstance(stderr, int) and stderrname: