net.spy.memcached.compat.log.Level Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spymemcached Show documentation
Show all versions of spymemcached Show documentation
A simple, asynchronous, single-threaded Memcached client written in java.
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