DEBUG
level whilst developing plug-ins, Pyblish can tell you a few things about what is going on.%(message)s
is one of the many variables available during formatting, see here for a full list.basicConfig
will register a handler too, and it's possible to have many. See log.handlers
for the ones currently registered, it's a plain Python list
that you can clear to get rid of them.basicConfig
under-the-hood at startup. Which means that you always see these messages whether you want to or not. You can remove handlers, and edit them despite this.