10. [APIs: all]: 添加了 logger.setLevel(INFO),只有添加这个,单个模块内才生效

This commit is contained in:
2024-08-01 19:15:08 +08:00
parent 60726d9d07
commit 340d48876b
12 changed files with 33 additions and 24 deletions

View File

@ -1,10 +1,11 @@
from json import loads
from sys import argv
from logging import getLogger
from logging import getLogger, INFO
from commons import clibs
tab_name = clibs.tab_names['at']
logger = getLogger(__file__)
logger.setLevel(INFO)
def trigger_estop(md, w2t):