java.util.logging.ConsoleHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package java.util.logging;
public class ConsoleHandler extends StreamHandler {
public ConsoleHandler() {
super(System.err);
}
@Override
public void close() {
super.close(false);
}
@Override
public void publish(LogRecord record) {
super.publish(record);
super.flush();
}
}