systemprompt-logging 0.2.2

Tracing and audit infrastructure for systemprompt.io AI governance. Structured events, five-point audit traces, and SIEM-ready JSON output — part of the MCP governance pipeline.
Documentation
#[macro_export]
macro_rules! cli_success {
    ($($arg:tt)*) => {
        $crate::services::cli::CliService::success(&format!($($arg)*))
    };
}

#[macro_export]
macro_rules! cli_warning {
    ($($arg:tt)*) => {
        $crate::services::cli::CliService::warning(&format!($($arg)*))
    };
}

#[macro_export]
macro_rules! cli_error {
    ($($arg:tt)*) => {
        $crate::services::cli::CliService::error(&format!($($arg)*))
    };
}

#[macro_export]
macro_rules! cli_info {
    ($($arg:tt)*) => {
        $crate::services::cli::CliService::info(&format!($($arg)*))
    };
}