use Once;
use ;
static INIT_LOG: Once = new;
/// Initializes the global tracing subscriber with a configured log level and formatting.
///
/// This function sets up a tracing subscriber with a default log level of "info",
/// which can be overridden by environment variables. It configures the log output
/// to disable log targets, and enable thread IDs and thread names.
///
/// The initialization is performed only once using a `Once` synchronization primitive
/// to ensure thread-safe global subscriber setup.