pub fn Logger()Expand description
Initializes the logger for run operations.
This function sets up a colored, structured logger with support for
configurable log levels via the RUST_LOG environment variable.
§Log Levels
Control log verbosity with RUST_LOG:
export RUST_LOG=debug # More verbose output
export RUST_LOG=info # Standard output
export RUST_LOG=error # Only errors
export RUST_LOG=Run=debug # Run module only§Example
use crate::Run::Logger;
Logger();