From 8654650f0872dfcf4a71bbc45ebe11699276c9dc Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Wed, 11 Nov 2015 10:31:36 +0100 Subject: [PATCH] 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 --- oslo_service/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_service/service.py b/oslo_service/service.py index 873b00d0..af6b4964 100644 --- a/oslo_service/service.py +++ b/oslo_service/service.py @@ -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