R 记录器的调试器级别 - FINEST 是否等于 Python 的 DEBUG?
Is R logger's debugger level - FINEST equal to Python's DEBUG?
我正在尝试通过了解其功能将 R 脚本转换为 Python。
他们在 R 中创建了一个 logger 并设置了 logger 的级别。我感到困惑的是单词 FINEST
作为日志级别。我以前用任何语言都没有遇到过这样的水平。
R中的FINEST
等级是否等于Python的DEBUG
,哪个给出了所有输出?
setLevel(level='FINEST', container=r_logger)
python 中不存在 R 日志包的 finest/finer/fine 级别。随着 loglevels
you can see the individual levels and their numeric value. This tells you that they are supposed to be even below DEBUG
. If you definitely must have them in python it's possible to create custom levels.
R 日志记录包级别:
NOTSET FINEST FINER FINE DEBUG INFO WARNING WARN
0 1 4 7 10 20 30 30
ERROR CRITICAL FATAL
40 50 50
Python 日志级别:
{50: 'CRITICAL', 40: 'ERROR', 30: 'WARNING', 20: 'INFO', 10: 'DEBUG', 0: 'NOTSET'}
我正在尝试通过了解其功能将 R 脚本转换为 Python。
他们在 R 中创建了一个 logger 并设置了 logger 的级别。我感到困惑的是单词 FINEST
作为日志级别。我以前用任何语言都没有遇到过这样的水平。
R中的FINEST
等级是否等于Python的DEBUG
,哪个给出了所有输出?
setLevel(level='FINEST', container=r_logger)
python 中不存在 R 日志包的 finest/finer/fine 级别。随着 loglevels
you can see the individual levels and their numeric value. This tells you that they are supposed to be even below DEBUG
. If you definitely must have them in python it's possible to create custom levels.
R 日志记录包级别:
NOTSET FINEST FINER FINE DEBUG INFO WARNING WARN
0 1 4 7 10 20 30 30
ERROR CRITICAL FATAL
40 50 50
Python 日志级别:
{50: 'CRITICAL', 40: 'ERROR', 30: 'WARNING', 20: 'INFO', 10: 'DEBUG', 0: 'NOTSET'}