//! ## Logging Configuration for Spart
//!
//! This module initializes the logging configuration for Spart at startup.
//! The logging behavior is controlled by the `DEBUG_SPART` environment variable.
//! If `DEBUG_SPART` is not set or is set to a falsy value ("0", "false", or empty),
//! logging will remain disabled. Otherwise, logging is enabled with a maximum level of DEBUG.
use ctor;
use Level;