Pyblish.api.register_plugin_path() error with plugins

Hi
I use pyblish.api.register_plugin_path(path)
to register my plugins, but they dont show up if there is a error in them.
Do pyblish return these errors somewhere? I would like to make a error dialog pop up showing the plugins that wasnt loaded and what errors they got.

Thanks

Hi @hamaro, sorry for the delayed response.

Errors are outputted via Python’s logging module, so you can setup a handler for it and listen for the "pyblish" channel to receive them.

You can also explicitly discover plug-ins, and thus trigger the errors, by calling pyblish.api.discover() at any time.