45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
// logging/CustomHandler.java
|
|
// ©2016 MindView LLC: see Copyright.txt
|
|
// How to write custom handler
|
|
import java.util.logging.*;
|
|
import java.util.*;
|
|
|
|
public class CustomHandler {
|
|
private static Logger logger =
|
|
Logger.getLogger("CustomHandler");
|
|
private static List<String> trace =
|
|
new ArrayList<>();
|
|
public static void main(String[] args) {
|
|
logger.addHandler(new Handler() {
|
|
@Override
|
|
public void publish(LogRecord logRecord) {
|
|
trace.add(logRecord.getLevel() + ":");
|
|
trace.add(logRecord.getSourceClassName()
|
|
+ ":");
|
|
trace.add(
|
|
logRecord.getSourceMethodName() +":");
|
|
trace.add("<" + logRecord.getMessage()
|
|
+ ">");
|
|
trace.add("\n");
|
|
}
|
|
@Override
|
|
public void flush() {}
|
|
@Override
|
|
public void close() {}
|
|
});
|
|
logger.warning("Logging Warning");
|
|
logger.info("Logging Info");
|
|
System.out.print(trace);
|
|
}
|
|
}
|
|
/* Output:
|
|
[WARNING:, CustomHandler:, main:, <Logging Warning>,
|
|
, INFO:, CustomHandler:, main:, <Logging Info>,
|
|
]
|
|
___[ Error Output ]___
|
|
Jun 15, 2015 3:47:52 PM CustomHandler main
|
|
WARNING: Logging Warning
|
|
Jun 15, 2015 3:47:52 PM CustomHandler main
|
|
INFO: Logging Info
|
|
*/
|