Hello,
I know Log4j does this but I am not allowed to add this dependency again. I want to log to two different files from the same logging.properties
What is the simplest log file that will accomplish this assuming that:
- FileHandler is java.util.logging.FileHandler
- com.package is one package
- com.diffpackage is another package
- FileHandlerTwo is just an extended java.util.logging.FileHandler
- One package should log to filea and another should log to fileb
This is of course assuming that I am importing java.util.logging, getting the logger and setting it to the class name.