0

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

eppesuig
  • 1,375
  • 2
  • 12
  • 28

1 Answers1

0

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

You should create a SSCCE to demonstrate the problem.

Steve McLeod
  • 51,737
  • 47
  • 128
  • 184