Currently I try to add logging to my plugin that I am developing.
I added the following statement at the top, but it doesn’t produce any output. Does the logging module work within plugins?
import logging
logging.basicConfig(level=logging.DEBUG, format=' %(asctime)s - %(levelname)s - %(message)s')
logging.debug('Start of program')