-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#646: Add variable for intellij to disable console log output #729
base: main
Are you sure you want to change the base?
Conversation
Pull Request Test Coverage Report for Build 11596089523Details
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@KianRolf thanks for your addition of the IDE_ENABLE_LOG variable. I've added some CRs, please resolve.
cli/src/main/java/com/devonfw/tools/ide/variable/IdeVariables.java
Outdated
Show resolved
Hide resolved
…java Co-authored-by: jan-vcapgemini <[email protected]>
Co-authored-by: jan-vcapgemini <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for addressing the change requests. I think we should also add an entry to our documentation, so the user becomes aware of this feature.
I'm not sure about the naming yet. IDE_ENABLE_LOG could be misinterpreted that the logging is now being done into a file. Maybe we need 2 variables instead? IDE_ENABLE_FILE_LOG (logs intellij errors into log file) and IDE_ENABLE_LOG (disables complete logging) |
I think renaming the variable IDE_ENABLE_CONSOLE_LOG avoids the confusion and i also added IDE_ENABLE_CONSOLE_LOG to variables.adoc in documentation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice solution for the naming. Ready for review.
fixes #646