Merge "Remove duplicated "caught" message"

This commit is contained in:
Jenkins 2014-04-17 02:30:14 +00:00 committed by Gerrit Code Review
commit 8c00b3618c
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ class ProcessLauncher(object):
launcher.wait()
except SignalExit as exc:
signame = _signo_to_signame(exc.signo)
LOG.info(_LI('Caught %s, exiting'), signame)
LOG.info(_LI('Child caught %s, exiting'), signame)
status = exc.code
signo = exc.signo
except SystemExit as exc: