You've already forked my-video-workflow
logger提出
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
import logging
|
||||
|
||||
LOGGER = logging.getLogger("WORKFLOW")
|
||||
_ch = logging.StreamHandler()
|
||||
_ch.setLevel(logging.DEBUG)
|
||||
LOGGER.setLevel(logging.DEBUG)
|
||||
LOGGER.addHandler(_ch)
|
||||
|
Reference in New Issue
Block a user