I have a problem with java.util.logging. Everything is working just fine from the start but after a while the logger simply stops do write any data to file and I have no idea why (no exception, no error) nor how to find a cause of this problem.

I tried google but did not find any similar problem.

tl,dr; java.util.logging stops working, want to know why.

link|improve this question
Are you sure that the Handler being used isn't set to have a maximum size to the file? – Darien Jun 11 '11 at 5:32
is the thread stuck? or the code is happily running? – Jochen Bedersdorfer Jun 11 '11 at 6:13
@Darien logger stops at (seemingly) random points in time/file size – Wojtek Jun 11 '11 at 6:16
@Jochen Bedersdorfer the whole app is running just fine (well, to be honest there is a lot of threads there) and the only problem is that at some point the logger (which was working ok in that environment) just stops outputting data to file. – Wojtek Jun 11 '11 at 6:17
can you report from jstack shows? – bestsss Jun 11 '11 at 7:53
feedback

2 Answers

Do note that loggers returned from the getLogger factory methods can be garbage collected at any time, and this can break things, like any levels you may have set in main().

http://download.oracle.com/javase/6/docs/api/java/util/logging/Logger.html

Use a strong reference to the Logger to avoid it to be garbaged:

Logger logger = Logger.getLogger("");
link|improve this answer
feedback

As @Darien comments, this could be a due to the FileHandler being configured with a non-zero limit.

  • The handler could have switched to the next file - if count is greater that 1.
  • If the count is equal to one, it could just stop.

FWIW - most Java developers gave up using java.util.logging many years ago. I'd recommend log4j, slf4j or logback in preference to java.util.logging.

link|improve this answer
well, if there is no default value then no: FileHandler fileMy = new FileHandler("logger.txt", true); – Wojtek Jun 11 '11 at 6:39
Are you rendering that moot by using LogManager configuration properties? – Stephen C Jun 11 '11 at 7:37
@Stephen, We do use java.util.logging with improved Logger (no sync) and LogRecord (also no sync in the c-toe), never had issues. The framework is extensible and flexible enough. We have our own configurator with dynamic redeployable xml (i.e. dont use prop files), . Imo, it's superior to both frameworks, esp slf4j. – bestsss Jun 11 '11 at 7:50
@bestsss - the problem is that you pretty much have to extend it. For instance the standard configurator is just too limited (I found). By contrast log4j and friends don't need to be extended to make them usable. – Stephen C Jun 11 '11 at 12:09
@Stephen, well prop files suck for anything besides beside key=value stuff (having dots and classes means bad props use), although JBuilder used to use props for configuration. I remember we embraced java.util.logging quite long ago (1.4 was new) but it's a standard lib and it's always there. I did hope to become more popular but indeed it lacks stuff like daily rollover, nice formatters, and redeployable configs etc... yet nothing you can't manually do better than log4j :) – bestsss Jun 11 '11 at 18:34
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.