1
vote
2answers
110 views
disable java log rotation
I use java.util.logging.Logger to log in my app :
FileHandler fh=new FileHandler(this.todayFileName, 0, 1, true);
fh.setFormatter(new SimpleFormatter());
…
1
vote
1answer
180 views
Why would you use logging.properties if App Engine automatically logs stdout & stderr to INFO & WARNING?
According to the documentation for Google App Engine for Java:
The App Engine Java SDK includes a
template logging.properties file, in
the appengine-java-sdk/config/user/
directory. To use …
0
votes
3answers
84 views
How to regulate the amount of printouts generated by a logging instruction produces over time?
How can I limit a program log printouts to a maximum of X printouts within Y seconds?
Programming server side with java.util.logging, my code has a lot of info, warning, and error statements like:
…
2
votes
2answers
782 views
Load java.util.logging.config.file for default initialization
Hi,
I'm trying to load a custom log.properties file when my application is started.
My properties file is in the same package as my main class, so i assumed that the …
0
votes
3answers
808 views
How to get java Logger output to file by default
Netbeans thoughtfully sprinkles Logger.getLogger(this.getClass().getName()).log(Level. [...]
statements into catch blocks. Now I would like to point them all to a file (and to console).
Every logging …
