systemprompt-logging 0.14.3

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Logging domain types: entries, levels, filters, and errors.
//!
//! [`LogEntry`] is the structured record written to every sink; [`LogLevel`]
//! and [`LogActor`] classify it; [`LogFilter`] parameterizes paginated reads;
//! [`LogRow`] is the database projection. Failures surface as [`LoggingError`].

mod log_entry;
mod log_error;
mod log_filter;
mod log_level;
mod log_row;

pub use log_entry::{LogActor, LogEntry};
pub use log_error::LoggingError;
pub use log_filter::LogFilter;
pub use log_level::LogLevel;
pub use log_row::LogRow;