public abstract class Logger extends Object
Extend this class to provide a custom logging implementation, then register it via a custom
ILoggerFactory and LoggerFactory.setDefault(com.databricks.sdk.core.logging.ILoggerFactory).
| Constructor and Description |
|---|
Logger() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
debug(String msg) |
abstract void |
debug(String format,
Object... args) |
abstract void |
debug(Supplier<String> msgSupplier) |
abstract void |
error(String msg) |
abstract void |
error(String format,
Object... args) |
abstract void |
error(Supplier<String> msgSupplier) |
abstract void |
info(String msg) |
abstract void |
info(String format,
Object... args) |
abstract void |
info(Supplier<String> msgSupplier) |
abstract void |
warn(String msg) |
abstract void |
warn(String format,
Object... args) |
abstract void |
warn(Supplier<String> msgSupplier) |
Copyright © 2026. All rights reserved.