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
The handler is added each time you call from outside. Try Removeing the Handler after you finish your job:
self.logger.removeHandler(ch)