All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mentawai.log.LogManager Maven / Gradle / Ivy

Go to download

A Java full-stack web framework with programmatic configuration instead of XML and Annotations.

There is a newer version: 2.5.6
Show newest version
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);
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy