log messages appearing twice with Python Logging I'm using Python logging, and for some reason, all of my messages are appearing twice. I have a module to configure logging: # BUG: It's outputting logging messages twice - not sure why - it's not the propagate setting. def configure_logging(self, logging_file): self.logger = logging.getLogger("my_logger") self.logger.setLevel(logging.DEBUG) self...