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

net.spy.memcached.compat.log.Level Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2002  Dustin Sallings 

package net.spy.memcached.compat.log;

/**
 * Levels for logging.
 */
public enum Level {

	/**
	 * Debug level.
	 */
	DEBUG,
	/**
	 * Info level.
	 */
	INFO,
	/**
	 * Warning level.
	 */
	WARN,
	/**
	 * Error level.
	 */
	ERROR,
	/**
	 * Fatal level.
	 */
	FATAL;

	/**
	 * Get a string representation of this level.
	 */
	@Override
	public String toString() {
		return("{LogLevel:  " + name() + "}");
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy