summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/MultiprocessingCore.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-08-06 14:21:38 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-08-06 14:21:38 -0400
commit794d1cb59f9cf7b8006b261bcbb6aa3863c52975 (patch)
treeb2d298d79115dff339ef961ad1c03cb431a000fe /src/lib/Bcfg2/Server/MultiprocessingCore.py
parent4e60e190a4267e69365f1968351f558e1102db94 (diff)
downloadbcfg2-794d1cb59f9cf7b8006b261bcbb6aa3863c52975.tar.gz
bcfg2-794d1cb59f9cf7b8006b261bcbb6aa3863c52975.tar.bz2
bcfg2-794d1cb59f9cf7b8006b261bcbb6aa3863c52975.zip
MultiprocessingCore: log some messages as debug, not error
Diffstat (limited to 'src/lib/Bcfg2/Server/MultiprocessingCore.py')
-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):