Implemented a simple but working implementation of the java logging API,

complete with a test class
This commit is contained in:
Eric Scharff
2007-09-26 14:46:21 -06:00
parent 749ae86d49
commit bb4a7c21c7
6 changed files with 248 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package java.util.logging;
public class Handler {
public void publish(LogRecord r) {
}
}