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

com.dslplatform.json.processor.LogLevel Maven / Gradle / Ivy

There is a newer version: 1.52.1
Show newest version
package com.dslplatform.json.processor;

public enum LogLevel {
	DEBUG(0),
	INFO(1),
	ERRORS(2),
	NONE(3);

	private final int level;

	LogLevel(int level) {
		this.level = level;
	}

	public boolean isVisible(LogLevel other) {
		return other.level <= this.level;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy