public interface Logger
| Modifier and Type | Method and Description |
|---|---|
void |
bulk(Consumer<Logger> consumer)
Used to temporarily write several messages in bulk.
|
void |
log(String message) |
void |
log(String format,
Object... arguments) |
void |
log(String message,
Throwable throwable) |
void log(@Nonnull String message, @Nonnull Throwable throwable)
message - The message to be writtenthrowable - An exception that will also be writtenvoid log(@Nonnull String format, @Nullable Object... arguments)
format - A string format for writing a messagearguments - Arguments to substitute into the message according to the formatvoid bulk(@Nonnull Consumer<Logger> consumer)
consumer - A callback operation that accepts an equivalent LoggerCopyright © 2002–2018 The Neo4j Graph Database Project. All rights reserved.