Skip to main content

bamboo_server/
logging.rs

1//! Logging initialization.
2//!
3//! The implementation lives in `bamboo-infrastructure` so the server binary, the
4//! CLI/TUI, and embedded hosts share daily-rotating log files with date-based
5//! retention. The standalone server has a stable `info` default while embedding
6//! APIs can opt into build-profile-derived levels.
7//! These re-exports preserve the historical `bamboo_agent::server::logging::*`
8//! call paths.
9pub use bamboo_infrastructure::logging::{
10    init_logging, init_logging_with_home, init_logging_with_options, init_server_logging_with_home,
11    LogOptions, DEFAULT_MAX_LOG_FILES,
12};