I have a server that I created in Java that should use a database, I selected HSQLDB.
So, I have many entries on my server, for example:
Logger.getLogger(getClass().getName()). severe or info ("Some important information");
When I start my server, it goes into System.out, which, in my opinion, has the default configuration java.util.logging?, as long as this is normal for me, and later I will make it go to the file ...
But the problem is that when I run hsqldb, it messes up the default setting and I can no longer read the log entries System.out.
I already tried to change hsqldb.log_data=false, but it still messed up the default configuration.
Can someone help me? I do not want to log hsqldb events, only my server ones.
thank
source
share