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 (e.g. the Bodhi Tauri app) share one policy:
5//! daily-rotating log files with date-based retention and build-profile levels.
6//! These re-exports preserve the historical `bamboo_agent::server::logging::*`
7//! call paths.
8pub use bamboo_infrastructure::logging::{
9 init_logging, init_logging_with_home, init_logging_with_options, LogOptions,
10 DEFAULT_MAX_LOG_FILES,
11};