-
Notifications
You must be signed in to change notification settings - Fork 44
[IntelliJ] Improve Logging support of IDE-specific messages #2754
Comments
Assigning myself to help with docs work! 🖊️ |
The existing methods will continue to use the class-specific logger category Logger.log(...) - should be used sparingly since by default INFO messages get written to the log The following methods will be added and they will use the generic Logger.logDebug(...) Sample debug message: (Note DEBUG level). This particular message change affecting CodewindApplicationFactory will be included in this PR.
The current INFO messages look like this These should be changed to debug or trace level messages and should not be shown in production. These should be changed in a separate PR. |
this section can use a quick update to mention intellij |
Closing. Follow-up issue is: #2819 |
Codewind version: latest
OS: any
IDE extension version: latest
IDE version: 2019.3
Description of the enhancement:
Improve log support of our Codewind Intellij plugin
Currently we log our INFO level messages to the IntelliJ log file (eg. idea.log) and we are inundating it with our messages, including entire JSON responses from turbine/portal. We need to add debug and trace level flags that need to be turned on in order for the messages to be logged to the log file.
The text was updated successfully, but these errors were encountered: