bamboo-server 2026.9.20

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Logging initialization.
//!
//! The implementation lives in `bamboo-infrastructure` so the server binary, the
//! CLI/TUI, and embedded hosts share daily-rotating log files with count- and
//! byte-bounded historical retention enforced at startup. The standalone server
//! has a stable `info` default while embedding APIs can opt into
//! build-profile-derived stdout levels; files remain `info` unless explicitly
//! overridden.
//! These re-exports preserve the historical `bamboo_agent::server::logging::*`
//! call paths.
pub use bamboo_infrastructure::logging::{
    init_logging, init_logging_with_home, init_logging_with_options, init_server_logging_with_home,
    LogOptions, DEFAULT_MAX_LOG_BYTES, DEFAULT_MAX_LOG_FILES,
};