Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/c14039beadbcca77d5ca1efb9119f603 to your computer and use it in GitHub Desktop.
Save ezhov-da/c14039beadbcca77d5ca1efb9119f603 to your computer and use it in GitHub Desktop.
изменение уровня логирования стандартного логера програмно
private static void setLoggerLevel() {
Logger rootLogger = LogManager.getLogManager().getLogger("");
rootLogger.setLevel(Level.FINEST);
for (Handler h : rootLogger.getHandlers()) {
h.setLevel(Level.FINEST);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment