add pid to log

pull/2798/head
Matt Coddington 12 years ago
parent 75cf5c985b
commit 3b8f69bac8

@ -29,7 +29,9 @@ from ansible.color import stringc
import logging import logging
if constants.DEFAULT_LOG_PATH != '': if constants.DEFAULT_LOG_PATH != '':
logging.basicConfig(filename=constants.DEFAULT_LOG_PATH, level=logging.DEBUG, format='%(asctime)s %(message)s') logging.basicConfig(filename=constants.DEFAULT_LOG_PATH, level=logging.DEBUG, format='%(asctime)s %(name)s %(message)s')
mypid = os.getpid()
logger = logging.getLogger(str(mypid))
callback_plugins = [x for x in utils.plugins.callback_loader.all()] callback_plugins = [x for x in utils.plugins.callback_loader.all()]
@ -106,9 +108,9 @@ def display(msg, color=None, stderr=False, screen_only=False, log_only=False):
msg = msg.replace("\n","") msg = msg.replace("\n","")
if not screen_only: if not screen_only:
if color == 'red': if color == 'red':
logging.error(msg) logger.error(msg)
else: else:
logging.info(msg) logger.info(msg)
log_unflock() log_unflock()
def call_callback_module(method_name, *args, **kwargs): def call_callback_module(method_name, *args, **kwargs):

Loading…
Cancel
Save