git-svn-id: http://minlog.googlecode.com/svn/trunk@16 4aeaecc2-aa77-11de-b6f4-e1be98fab775

This commit is contained in:
nathan.sweet 2010-03-25 22:39:14 +00:00
parent 8c3c1e7ca2
commit c55dc70c82
1 changed files with 24 additions and 0 deletions

View File

@ -53,6 +53,30 @@ public class Log {
TRACE = level <= LEVEL_TRACE;
}
static public void NONE () {
set(LEVEL_NONE);
}
static public void ERROR () {
set(LEVEL_ERROR);
}
static public void WARN () {
set(LEVEL_WARN);
}
static public void INFO () {
set(LEVEL_INFO);
}
static public void DEBUG () {
set(LEVEL_DEBUG);
}
static public void TRACE () {
set(LEVEL_TRACE);
}
/**
* Sets the logger that will write the log messages.
*/