public class SystemStreamLog extends Object implements Log
Constructor and Description |
---|
SystemStreamLog() |
Modifier and Type | Method and Description |
---|---|
void |
debug(CharSequence content)
Send a message to the user in the debug error level.
|
void |
debug(CharSequence content,
Throwable error)
Send a message (and accompanying exception) to the user in the debug error level.
|
void |
debug(Throwable error)
Send an exception to the user in the debug error level.
|
void |
error(CharSequence content)
Send a message to the user in the error error level.
|
void |
error(CharSequence content,
Throwable error)
Send a message (and accompanying exception) to the user in the error error level.
|
void |
error(Throwable error)
Send an exception to the user in the error error level.
|
void |
info(CharSequence content)
Send a message to the user in the info error level.
|
void |
info(CharSequence content,
Throwable error)
Send a message (and accompanying exception) to the user in the info error level.
|
void |
info(Throwable error)
Send an exception to the user in the info error level.
|
boolean |
isDebugEnabled() |
boolean |
isErrorEnabled() |
boolean |
isInfoEnabled() |
boolean |
isWarnEnabled() |
void |
warn(CharSequence content)
Send a message to the user in the warn error level.
|
void |
warn(CharSequence content,
Throwable error)
Send a message (and accompanying exception) to the user in the warn error level.
|
void |
warn(Throwable error)
Send an exception to the user in the warn error level.
|
public SystemStreamLog()
public void debug(CharSequence content)
Log
debug
in interface Log
Log.debug(java.lang.CharSequence)
public void debug(CharSequence content, Throwable error)
Log
debug
in interface Log
Log.debug(java.lang.CharSequence, java.lang.Throwable)
public void debug(Throwable error)
Log
debug
in interface Log
Log.debug(java.lang.Throwable)
public void info(CharSequence content)
Log
info
in interface Log
Log.info(java.lang.CharSequence)
public void info(CharSequence content, Throwable error)
Log
info
in interface Log
Log.info(java.lang.CharSequence, java.lang.Throwable)
public void info(Throwable error)
Log
info
in interface Log
Log.info(java.lang.Throwable)
public void warn(CharSequence content)
Log
warn
in interface Log
Log.warn(java.lang.CharSequence)
public void warn(CharSequence content, Throwable error)
Log
warn
in interface Log
Log.warn(java.lang.CharSequence, java.lang.Throwable)
public void warn(Throwable error)
Log
warn
in interface Log
Log.warn(java.lang.Throwable)
public void error(CharSequence content)
Log
error
in interface Log
Log.error(java.lang.CharSequence)
public void error(CharSequence content, Throwable error)
Log
error
in interface Log
Log.error(java.lang.CharSequence, java.lang.Throwable)
public void error(Throwable error)
Log
error
in interface Log
Log.error(java.lang.Throwable)
public boolean isDebugEnabled()
isDebugEnabled
in interface Log
Log.isDebugEnabled()
public boolean isInfoEnabled()
isInfoEnabled
in interface Log
Log.isInfoEnabled()
public boolean isWarnEnabled()
isWarnEnabled
in interface Log
Log.isWarnEnabled()
public boolean isErrorEnabled()
isErrorEnabled
in interface Log
Log.isErrorEnabled()
Copyright © 2001–2015 The Apache Software Foundation. All rights reserved.