Package org.apache.maven.plugin.logging
Class SystemStreamLog
java.lang.Object
org.apache.maven.plugin.logging.SystemStreamLog
- All Implemented Interfaces:
- Log
Deprecated.
Use SLF4J directly
Logger with "standard" output and error output stream.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoiddebug(CharSequence content) Deprecated.Send a message to the user in the debug error level.voiddebug(CharSequence content, Throwable error) Deprecated.Send a message (and accompanying exception) to the user in the debug error level.
 The error's stacktrace will be output when this error level is enabled.voidDeprecated.Send an exception to the user in the debug error level.
 The stack trace for this exception will be output when this error level is enabled.voiderror(CharSequence content) Deprecated.Send a message to the user in the error error level.voiderror(CharSequence content, Throwable error) Deprecated.Send a message (and accompanying exception) to the user in the error error level.
 The error's stacktrace will be output when this error level is enabled.voidDeprecated.Send an exception to the user in the error error level.
 The stack trace for this exception will be output when this error level is enabled.voidinfo(CharSequence content) Deprecated.Send a message to the user in the info error level.voidinfo(CharSequence content, Throwable error) Deprecated.Send a message (and accompanying exception) to the user in the info error level.
 The error's stacktrace will be output when this error level is enabled.voidDeprecated.Send an exception to the user in the info error level.
 The stack trace for this exception will be output when this error level is enabled.booleanDeprecated.booleanDeprecated.booleanDeprecated.booleanDeprecated.voidwarn(CharSequence content) Deprecated.Send a message to the user in the warn error level.voidwarn(CharSequence content, Throwable error) Deprecated.Send a message (and accompanying exception) to the user in the warn error level.
 The error's stacktrace will be output when this error level is enabled.voidDeprecated.Send an exception to the user in the warn error level.
 The stack trace for this exception will be output when this error level is enabled.
- 
Constructor Details- 
SystemStreamLogpublic SystemStreamLog()Deprecated.
 
- 
- 
Method Details- 
debugDeprecated.Description copied from interface:LogSend a message to the user in the debug error level.
- 
debugDeprecated.Description copied from interface:LogSend a message (and accompanying exception) to the user in the debug error level.
 The error's stacktrace will be output when this error level is enabled.
- 
debugDeprecated.Description copied from interface:LogSend an exception to the user in the debug error level.
 The stack trace for this exception will be output when this error level is enabled.
- 
infoDeprecated.Description copied from interface:LogSend a message to the user in the info error level.
- 
infoDeprecated.Description copied from interface:LogSend a message (and accompanying exception) to the user in the info error level.
 The error's stacktrace will be output when this error level is enabled.
- 
infoDeprecated.Description copied from interface:LogSend an exception to the user in the info error level.
 The stack trace for this exception will be output when this error level is enabled.
- 
warnDeprecated.Description copied from interface:LogSend a message to the user in the warn error level.
- 
warnDeprecated.Description copied from interface:LogSend a message (and accompanying exception) to the user in the warn error level.
 The error's stacktrace will be output when this error level is enabled.
- 
warnDeprecated.Description copied from interface:LogSend an exception to the user in the warn error level.
 The stack trace for this exception will be output when this error level is enabled.
- 
errorDeprecated.Description copied from interface:LogSend a message to the user in the error error level.
- 
errorDeprecated.Description copied from interface:LogSend a message (and accompanying exception) to the user in the error error level.
 The error's stacktrace will be output when this error level is enabled.
- 
errorDeprecated.Description copied from interface:LogSend an exception to the user in the error error level.
 The stack trace for this exception will be output when this error level is enabled.
- 
isDebugEnabledpublic boolean isDebugEnabled()Deprecated.- Specified by:
- isDebugEnabledin interface- Log
- Returns:
- true if the debug error level is enabled
- See Also:
 
- 
isInfoEnabledpublic boolean isInfoEnabled()Deprecated.- Specified by:
- isInfoEnabledin interface- Log
- Returns:
- true if the info error level is enabled
- See Also:
 
- 
isWarnEnabledpublic boolean isWarnEnabled()Deprecated.- Specified by:
- isWarnEnabledin interface- Log
- Returns:
- true if the warn error level is enabled
- See Also:
 
- 
isErrorEnabledpublic boolean isErrorEnabled()Deprecated.- Specified by:
- isErrorEnabledin interface- Log
- Returns:
- true if the error error level is enabled
- See Also:
 
 
-