org.mentawai.log.LogManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mentawai Show documentation
Show all versions of mentawai Show documentation
A Java full-stack web framework with programmatic configuration instead of XML and Annotations.
package org.mentawai.log;
public class LogManager {
public static void setLevel(Level level) {
for(Level l : Level.getAll()) {
if (l.getCode() >= level.getCode()) {
l.enable(true);
}
}
}
}