##// END OF EJS Templates
Merge pull request #8247 from minrk/localinterfaces...
Merge pull request #8247 from minrk/localinterfaces move utils.localinterfaces to jupyter_client

File last commit:

r21084:cde27d90
r21136:ad8172ef merge
Show More
log.py
25 lines | 628 B | text/x-python | PythonLexer
MinRK
add IPython.utils.log.get_logger...
r17056 """Grab the global logger instance."""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import logging
_logger = None
def get_logger():
"""Grab the global logger instance.
Min RK
update traitlets.log imports
r21084 If a global Application is instantiated, grab its logger.
MinRK
add IPython.utils.log.get_logger...
r17056 Otherwise, grab the root logger.
"""
global _logger
if _logger is None:
Min RK
update traitlets.log imports
r21084 from .config import Application
MinRK
add IPython.utils.log.get_logger...
r17056 if Application.initialized():
_logger = Application.instance().log
else:
logging.basicConfig()
_logger = logging.getLogger()
return _logger