Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It could be as simple as :
import java.util.logging.Level; import java.util.logging.Logger; public final static class JrdsLogHandler implements LogHandler { private static final Logger julilogger = Logger.getLogger(SomeClass.class.getCanonicalName()); @Override public void debug(String message) { julilogger.fine(message);; } @Override public void info(String message) { julilogger.info(message); } @Override public void error(String message, Throwable t) { julilogger.log(Level.WARNING, message, t); } };
The text was updated successfully, but these errors were encountered:
Thanks ;-) Will add sth like this to the next release (as well as a 'QuietLogHandler' as a real class)
Sorry, something went wrong.
bf6244e
No branches or pull requests
It could be as simple as :
The text was updated successfully, but these errors were encountered: