Change "started child" messages to DEBUG

According to our guidelines, INFO level messages should be important
state changes, which are of interest for an operator.

Right now it causes ironic INFO logs to show 8 not very helpful messages:
http://logs.openstack.org/98/219298/9/check/gate-tempest-dsvm-ironic-pxe_ipa/53784fb/logs/screen-ir-api.txt.gz?level=INFO

Change-Id: Ie122db9bf6c47c0d68aec85b0d908d3f2b9e4c79
This commit is contained in:
Dmitry Tantsur 2015-11-11 10:31:36 +01:00
parent acc9eb1e4d
commit 8654650f08
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ class ProcessLauncher(object):
os._exit(status)
LOG.info(_LI('Started child %d'), pid)
LOG.debug('Started child %d', pid)
wrap.children.add(pid)
self.children[pid] = wrap