Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
27
venv/Lib/site-packages/traitlets/log.py
Normal file
27
venv/Lib/site-packages/traitlets/log.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
"""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.
|
||||
|
||||
If a global Application is instantiated, grab its logger.
|
||||
Otherwise, grab the root logger.
|
||||
"""
|
||||
global _logger
|
||||
|
||||
if _logger is None:
|
||||
from .config import Application
|
||||
if Application.initialized():
|
||||
_logger = Application.instance().log
|
||||
else:
|
||||
_logger = logging.getLogger('traitlets')
|
||||
# Add a NullHandler to silence warnings about not being
|
||||
# initialized, per best practice for libraries.
|
||||
_logger.addHandler(logging.NullHandler())
|
||||
return _logger
|
Loading…
Add table
Add a link
Reference in a new issue