pub trait BootstrapLogger: Send + Sync {
// Required methods
fn error(&self, message: &str);
fn warn(&self, message: &str);
fn info(&self, message: &str);
fn debug(&self, message: &str);
}Expand description
Bootstrap logging abstraction
Provides a simple logging interface for bootstrap operations. Implementations can use tracing, env_logger, or custom backends.
Required Methods§
Sourcefn error(&self, message: &str)
fn error(&self, message: &str)
Log an error message
Used for fatal errors during bootstrap that will cause termination.