1 Answer
- Newest
- Most votes
- Most comments
1
You need to set a handler or set basic config. If you direct the logs to stdout, they will appear in the component log.
logger.addHandler(logging.StreamHandler(sys.stdout))
# or
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
Or you could send them to a different file by using a FileHandler instead of a StreamHandler.
Relevant content
- asked 5 years ago
