From 0a64d453530e11749cc5fb2099600fc6a1c58743 Mon Sep 17 00:00:00 2001 From: Taichi Gardener Date: Tue, 8 Mar 2022 07:29:24 +0000 Subject: [PATCH] Auto Format --- python/taichi/_logging.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/taichi/_logging.py b/python/taichi/_logging.py index 0487da7b18417..29696b9fe062d 100644 --- a/python/taichi/_logging.py +++ b/python/taichi/_logging.py @@ -31,15 +31,15 @@ def logger(msg, *args, **kwargs): def set_logging_level(level): """Setting the logging level to a specified value. Available levels are: 'trace', 'debug', 'info', 'warn', 'error', 'critical'. - + Note that after calling this function, logging levels below the specified one will also be effective. For example if `level` is set to 'warn', then the levels below - it, which are 'error' and 'critical' in this case, will also be effective. + it, which are 'error' and 'critical' in this case, will also be effective. See also https://docs.taichi.graphics/lang/articles/contribution/utilities#logging. Args: - level (str): Logging level. + level (str): Logging level. Example::