init_logging

Function init_logging 

Source
pub fn init_logging() -> Result<()>
Expand description

Initialize logging for the CLI

ยงExamples

use atlas_cli::init_logging;

// Initialize with default settings
let result = init_logging();
// Note: This might fail if already initialized
assert!(result.is_ok() || result.is_err());