Package org.savantbuild.output
Class SystemOutOutput
java.lang.Object
org.savantbuild.output.SystemOutOutput
- All Implemented Interfaces:
Output
Basic Savant output system. This writes to Appendables.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionOutputs a debug message along with the given values.Outputs a debug message with the stack trace for the given Throwable.Outputs a debug message along with the given values.Disables debug messages.Enables debug messages.Outputs an error message along with the given values.Outputs an error message along with the given values.Outputs an info message along with the given values.Outputs an info message along with the given values.Outputs an info message along with the given values.Outputs a warning message along with the given values.Outputs a warning message along with the given values.
-
Constructor Details
-
SystemOutOutput
public SystemOutOutput(boolean colorize)
-
-
Method Details
-
debug
Description copied from interface:OutputOutputs a debug message along with the given values. This uses printf if there are values and DOES NOT append a newline character to the end of message. If there are no values, this outputs the message via print. -
debugln
Description copied from interface:OutputOutputs a debug message along with the given values. This uses printf if there are values and appends a newline character to the end of message. If there are no values, this outputs the message via println. -
debug
Description copied from interface:OutputOutputs a debug message with the stack trace for the given Throwable. -
disableDebug
Description copied from interface:OutputDisables debug messages.- Specified by:
disableDebugin interfaceOutput- Returns:
- This.
-
enableDebug
Description copied from interface:OutputEnables debug messages.- Specified by:
enableDebugin interfaceOutput- Returns:
- This.
-
error
Description copied from interface:OutputOutputs an error message along with the given values. This uses printf if there are values and DOES NOT append a newline character to the end of message. If there are no values, this outputs the message via println. -
errorln
Description copied from interface:OutputOutputs an error message along with the given values. This uses printf if there are values and appends a newline character to the end of message. If there are no values, this outputs the message via println. -
info
Description copied from interface:OutputOutputs an info message along with the given values. This uses printf if there are values and DOES NOT append a newline character to the end of message. If there are no values, this outputs the message via println. -
infoln
Description copied from interface:OutputOutputs an info message along with the given values. This uses printf if there are values and appends a newline character to the end of message. If there are no values, this outputs the message via println. -
infoln
Description copied from interface:OutputOutputs an info message along with the given values. This uses printf if there are values and appends a newline character to the end of message. If there are no values, this outputs the message via println. -
warning
Description copied from interface:OutputOutputs a warning message along with the given values. This uses printf if there are values and DOES NOT append a newline character to the end of message. If there are no values, this outputs the message via println. -
warningln
Description copied from interface:OutputOutputs a warning message along with the given values. This uses printf if there are values and appends a newline character to the end of message. If there are no values, this outputs the message via println.
-