I have a swing application based on SAF (Swing Application Framework). All logging is done via java.util.logging and two different handlers: console and file. When I create Action to be executed by background taks, these task do not logging does not show up on console or file, even if here is no error/exception when calling the logger.log() method.

Is there any problem in using java.utils.logging classes from different threads? How may I better check/resolv this problem?

Thanks, Giuseppe

link|improve this question

75% accept rate
feedback

1 Answer

java.util.logging works safely in a multi-threaded application.

You should create a SSCCE to demonstrate the problem.

link|improve this answer
Thanks. I'll try to produce a simple example. – eppesuig Feb 20 at 15:51
feedback

Your Answer

 
or
required, but never shown

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