2015-09-07 11:44:36 -06:00
|
|
|
|
// logging/MultipleHandlers.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-06-15 17:47:35 -07:00
|
|
|
|
import java.util.logging.*;
|
|
|
|
|
|
|
|
|
|
public class MultipleHandlers {
|
|
|
|
|
private static Logger logger =
|
|
|
|
|
Logger.getLogger("MultipleHandlers");
|
|
|
|
|
public static void
|
|
|
|
|
main(String[] args) throws Exception {
|
|
|
|
|
FileHandler logFile =
|
|
|
|
|
new FileHandler("MultipleHandlers.xml");
|
|
|
|
|
logger.addHandler(logFile);
|
|
|
|
|
logger.addHandler(new ConsoleHandler());
|
|
|
|
|
logger.warning(
|
|
|
|
|
"Output to multiple handlers");
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
|
___[ Error Output ]___
|
|
|
|
|
Jun 15, 2015 3:47:52 PM MultipleHandlers main
|
|
|
|
|
WARNING: Output to multiple handlers
|
|
|
|
|
Jun 15, 2015 3:47:52 PM MultipleHandlers main
|
|
|
|
|
WARNING: Output to multiple handlers
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|