Append custom logger to the intellij logger
Hello everyone,
What is the best way to append a custom logger to the Intellij logger (com.intellij.openapi.diagnostic.Logger)? I want to append a logger that sends me mails only for errors originating from my plugin.
Thanks in advance
请先登录再写评论。
If you want to receive reports about exceptions happening in your plugin, you need to provide an implementation of the ErrorReportSubmitter interface.
I'll dive into it, thanks for the reply.