Merge branch 'add_pid_to_logging' of git://github.com/mcodd/ansible into devel

This commit is contained in:
Michael DeHaan 2013-04-28 20:52:53 -04:00
commit ba8f2fca26

View file

@ -29,7 +29,9 @@ from ansible.color import stringc
import logging
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()]
@ -106,9 +108,9 @@ def display(msg, color=None, stderr=False, screen_only=False, log_only=False):
msg = msg.replace("\n","")
if not screen_only:
if color == 'red':
logging.error(msg)
logger.error(msg)
else:
logging.info(msg)
logger.info(msg)
log_unflock()
def call_callback_module(method_name, *args, **kwargs):