Most plugins do not use the standard logger setup. All should call: ``` import logging logger = logging.getLogger(__name__) ``` Following that updating with additional logging messages is a good chore. logger.info() for normal and logger.debug() for verbose
Most plugins do not use the standard logger setup. All should call:
Following that updating with additional logging messages is a good chore.
logger.info() for normal
and
logger.debug() for verbose