public interface Printer
Like the various logging mechanisms, the underlying concept is to define several "levels" of logging, and process
messages of different levels differently. Unlike logging, printing is not JVM-global, but applies only to
specific contexts. In other words, it is not possible to "set" a global printer, but only to run runnables
"in the context" of a printer (see Printers.withPrinter(Printer, Runnable)
). This is useful e.g. in
multi-threaded environments like tasks in a build system or a script.
Modifier and Type | Method and Description |
---|---|
void |
debug(String message)
Prints a debug message.
|
void |
debug(String pattern,
Object... arguments)
Prints a debug message.
|
void |
error(String message)
Prints an error condition.
|
void |
error(String pattern,
Object... arguments)
Prints an error condition.
|
void |
error(String message,
Throwable t)
Prints an error condition.
|
void |
error(String pattern,
Throwable t,
Object... arguments)
Prints an error condition.
|
void |
info(String message)
Prints an informative ("normal") message.
|
void |
info(String pattern,
Object... arguments)
Prints an informative ("normal") message.
|
void |
verbose(String message)
Prints a verbose message.
|
void |
verbose(String pattern,
Object... arguments)
Prints a verbose message.
|
void |
warn(String message)
Prints a warning condition.
|
void |
warn(String pattern,
Object... arguments)
Prints a warning condition.
|
void error(@Nullable String message)
void error(String pattern, Object... arguments)
Format.format(Object)
void error(String pattern, @Nullable Throwable t, Object... arguments)
Format.format(Object)
void warn(@Nullable String message)
void warn(String pattern, Object... arguments)
Format.format(Object)
void info(@Nullable String message)
void info(String pattern, Object... arguments)
Format.format(Object)
void verbose(@Nullable String message)
void verbose(String pattern, Object... arguments)
Format.format(Object)
void debug(@Nullable String message)
void debug(String pattern, Object... arguments)
Format.format(Object)
Copyright © 2018 Arno Unkrig. All rights reserved.