The Stack with Objects and Functions Programming Language, a pure stack-based reverse-polish-notation functional and object-oriented experimental programming language.
Describe the bug
Messages from the Java Logging system that have level SEVERE (the highest level) show up on the standard output, which reveals unnecessarily much information to the normal user if they cause any compiler exception (syntax error or any runtime error).
To Reproduce
Cause any compiler exception, e.g. unclosed strings.
Expected behavior
No SEVERE messages show up on stdout, except when the -d debug flag is set.
To fix
Set the ConsoleHandler's level in CLI.main to Level.OFF.
Describe the bug Messages from the Java Logging system that have level SEVERE (the highest level) show up on the standard output, which reveals unnecessarily much information to the normal user if they cause any compiler exception (syntax error or any runtime error).
To Reproduce Cause any compiler exception, e.g. unclosed strings.
Expected behavior No SEVERE messages show up on stdout, except when the
-d
debug flag is set.To fix Set the
ConsoleHandler
's level inCLI.main
toLevel.OFF
.