Renderer Logging

Message logging for renderers is specific for each plug-in, and needs to be handled in a log.conf file located in the plugins directory.

Note:  The level set in the log.conf core file takes precedence over the level set in your plug-ins. So, setting log.conf to ERROR and the plug-in log level to INFO shows only the errors.

You can also customize the logger completely by creating a new handler for the Logger class, using a similar structure to that below:

myLog = logging.getLogger('MyLog') sh = logging.StreamHandler() logLevel = logging.WARNING # logging.INFO sh.setLevel(logLevel) myLog.addHandler(sh)