public interface Logger
Modifier and Type | Method and Description |
---|---|
void |
debug(String message,
String category)
Logger debug messages.
|
LogLevel |
getLevel() |
void |
info(String message,
String category)
Logger informational messages.
|
void |
setLevel(LogLevel level) |
void |
warn(String message,
String category)
Logger warning messages.
|
void setLevel(LogLevel level)
level
- the logging level above which the logger will logLogLevel getLevel()
void info(String message, String category)
message
- the message to logcategory
- the log category (usually this is the full name
of the class being logged but it can be anything)void warn(String message, String category)
message
- the message to logcategory
- the log category (usually this is the full name
of the class being logged but it can be anything)Copyright © 2004-2013 Codehaus. All Rights Reserved.