| java.lang.Object org.webdocwf.util.loader.logging.Logger org.webdocwf.util.loader.logging.StandardLogger
StandardLogger | public class StandardLogger extends Logger (Code) | | Standard implementation of the Logger . This is
general-purpose logging facility. A client that needs additional
functionality can either extend this class or provide there own
implementationm of Logger .
Currently this is a bare-bones class that writes INFO and above
levels to stderr and all others to a log file.
author: Sinisa Milosevic See Also: org.webdocwf.util.loader.logging.Logger |
activeLogFile | File activeLogFile(Code) | | Log file name.
|
StandardLogger | public StandardLogger()(Code) | | Construct a new logger. Configuration is not done now, to allow
the logger to be created very early.
|
close | public void close()(Code) | | |
configure | public void configure(String confFilePath) throws Exception(Code) | | Configure Logger with given config file, interpreting of config file is
logger implementation specific.
Parameters: confFilePath - Path to configuration file. |
getEnabledLogLevels | public boolean[] getEnabledLogLevels()(Code) | | |
isEnabled | public boolean isEnabled(int level)(Code) | | |
setEnabledLogLevels | public void setEnabledLogLevels(String logMode)(Code) | | |
|
|