org.richfaces.cdk
Interface Logger
- All Known Implementing Classes:
- JavaLogger
public interface Logger
That interface hides current logging system from generator classes. Concrete tools ( Maven, Ant, JUnit ) should provide
appropriate logger instance that delegates messages to the current log system.
- Author:
- shura
isDebugEnabled
boolean isDebugEnabled()
debug
void debug(CharSequence content)
debug
void debug(CharSequence content,
Throwable error)
debug
void debug(Throwable error)
isInfoEnabled
boolean isInfoEnabled()
info
void info(CharSequence content)
info
void info(CharSequence content,
Throwable error)
info
void info(Throwable error)
isWarnEnabled
boolean isWarnEnabled()
warn
void warn(CharSequence content)
warn
void warn(CharSequence content,
Throwable error)
warn
void warn(Throwable error)
isErrorEnabled
boolean isErrorEnabled()
error
void error(CharSequence content)
error
void error(CharSequence content,
Throwable error)
error
void error(Throwable error)
getErrorCount
int getErrorCount()
Copyright © 2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.