本文整理匯總了Python中absl.logging.getLogger方法的典型用法代碼示例。如果您正苦於以下問題:Python logging.getLogger方法的具體用法?Python logging.getLogger怎麽用?Python logging.getLogger使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類absl.logging
的用法示例。
在下文中一共展示了logging.getLogger方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _fix_werkzeug_logging
# 需要導入模塊: from absl import logging [as 別名]
# 或者: from absl.logging import getLogger [as 別名]
def _fix_werkzeug_logging(self):
"""Fix werkzeug logging setup so it inherits TensorBoard's log level.
This addresses a change in werkzeug 0.15.0+ [1] that causes it set its own
log level to INFO regardless of the root logger configuration. We instead
want werkzeug to inherit TensorBoard's root logger log level (set via absl
to WARNING by default).
[1]: https://github.com/pallets/werkzeug/commit/4cf77d25858ff46ac7e9d64ade054bf05b41ce12
"""
# Log once at DEBUG to force werkzeug to initialize its singleton logger,
# which sets the logger level to INFO it if is unset, and then access that
# object via logging.getLogger('werkzeug') to durably revert the level to
# unset (and thus make messages logged to it inherit the root logger level).
self.log(
"debug", "Fixing werkzeug logger to inherit TensorBoard log level"
)
logging.getLogger("werkzeug").setLevel(logging.NOTSET)
示例2: create_logger
# 需要導入模塊: from absl import logging [as 別名]
# 或者: from absl.logging import getLogger [as 別名]
def create_logger(self, log_path=None):
if log_path is None:
return None
check_and_create_dir(log_path)
handler = logging.handlers.RotatingFileHandler(log_path, mode="a", maxBytes=100000000, backupCount=200)
logging.root.removeHandler(absl.logging._absl_handler) # this removes duplicated logging
absl.logging._warn_preinit_stderr = False # this removes duplicated logging
formatter = RequestFormatter("[%(asctime)s] %(levelname)s: %(message)s")
handler.setFormatter(formatter)
logger = logging.getLogger(log_path)
logger.setLevel(logging.INFO)
for hdlr in logger.handlers[:]:
logger.removeHandler(hdlr) # remove old handlers
logger.addHandler(handler)
self.logger = logger
示例3: get_v1_distribution_strategy
# 需要導入模塊: from absl import logging [as 別名]
# 或者: from absl.logging import getLogger [as 別名]
def get_v1_distribution_strategy(params):
"""Returns the distribution strategy to use."""
if params["use_tpu"]:
# Some of the networking libraries are quite chatty.
for name in ["googleapiclient.discovery", "googleapiclient.discovery_cache",
"oauth2client.transport"]:
logging.getLogger(name).setLevel(logging.ERROR)
tpu_cluster_resolver = tf.distribute.cluster_resolver.TPUClusterResolver(
tpu=params["tpu"],
zone=params["tpu_zone"],
project=params["tpu_gcp_project"],
coordinator_name="coordinator"
)
logging.info("Issuing reset command to TPU to ensure a clean state.")
tf.Session.reset(tpu_cluster_resolver.get_master())
# Estimator looks at the master it connects to for MonitoredTrainingSession
# by reading the `TF_CONFIG` environment variable, and the coordinator
# is used by StreamingFilesDataset.
tf_config_env = {
"session_master": tpu_cluster_resolver.get_master(),
"eval_session_master": tpu_cluster_resolver.get_master(),
"coordinator": tpu_cluster_resolver.cluster_spec()
.as_dict()["coordinator"]
}
os.environ["TF_CONFIG"] = json.dumps(tf_config_env)
distribution = tf.distribute.experimental.TPUStrategy(
tpu_cluster_resolver, steps_per_run=100)
else:
distribution = distribution_utils.get_distribution_strategy(
num_gpus=params["num_gpus"])
return distribution
示例4: get_logger
# 需要導入模塊: from absl import logging [as 別名]
# 或者: from absl.logging import getLogger [as 別名]
def get_logger(name, level=logging.INFO, with_tqdm=True):
if with_tqdm:
handler = TQDMHandler()
else:
handler = logging.StreamHandler(stream=sys.stderr)
formatter = logging.Formatter(
fmt="%(asctime)s: %(module)s.%(funcName)s +%(lineno)s: %(levelname)-8s %(message)s",
datefmt="%H:%M:%S"
)
handler.setFormatter(formatter)
logger = logging.getLogger(name)
logger.setLevel(level)
logger.addHandler(handler)
return logger
示例5: _initialize
# 需要導入模塊: from absl import logging [as 別名]
# 或者: from absl.logging import getLogger [as 別名]
def _initialize():
"""Initializes loggers and handlers."""
global _absl_logger, _absl_handler
if _absl_logger:
return
original_logger_class = logging.getLoggerClass()
logging.setLoggerClass(ABSLLogger)
_absl_logger = logging.getLogger('absl')
logging.setLoggerClass(original_logger_class)
python_logging_formatter = PythonFormatter()
_absl_handler = ABSLHandler(python_logging_formatter)