
Search is based on keyword.
Ex: "Procedures"
Do not search with natural language
Ex: "How do I write a new procedure?"
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)
Sorry you didn't find this helpful
Why wasn't this helpful? (check all that apply)
Thanks for your feedback.
If you can't find what you're looking for or you have a workflow question, please try Foundry Support.
If you have any thoughts on how we can improve our learning content, please email the Documentation team using the button below.
Thanks for taking time to give us feedback.