summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Bcfg2/Server/MultiprocessingCore.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/MultiprocessingCore.py b/src/lib/Bcfg2/Server/MultiprocessingCore.py
index f67161fc5..b690242f8 100644
--- a/src/lib/Bcfg2/Server/MultiprocessingCore.py
+++ b/src/lib/Bcfg2/Server/MultiprocessingCore.py
@@ -235,7 +235,7 @@ class ChildCore(BaseCore):
# make the return connection before dispatching the actual
# RPC call so that the parent is blocking for a connection
# as briefly as possible
- self.logger.error("Connecting to parent via %s" % address)
+ self.logger.debug("Connecting to parent via %s" % address)
client = Client(address)
method, args, kwargs = data
rv = None
@@ -253,7 +253,7 @@ class ChildCore(BaseCore):
method))
if address is not None:
# if the key is None, then no response is expected
- self.logger.error("Returning data to parent via %s" % address)
+ self.logger.debug("Returning data to parent via %s" % address)
client.send(rv)
def _block(self):