1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! # ChrysalisRS
//!
//! Transform your logs into beautiful, structured JSON for elegant display in web UIs.
//!
//! ChrysalisRS provides a flexible, extensible logging framework that makes it easy to
//! serialize logs into JSON format for modern web interfaces.
//!
//! ## Core Features
//!
//! * 100% extensible architecture
//! * Full JSON serialization/deserialization
//! * Type-safe logging structures
//! * Integration with common logging frameworks
//! * Rich context and metadata support
//!
//! ## Example
//!
//! ```rust
//! use chrysalis_rs::{LogEntry, LogLevel};
//!
//! let mut log = LogEntry::new("User authentication successful", LogLevel::Info);
//! log.add_context("user_id", "12345");
//! log.add_context("ip_address", "192.168.1.1");
//!
//! // Serialize to JSON with one line
//! let json = log.to_json().unwrap();
//! ```
pub use ;
pub use Error;
pub use ;
pub use ;
pub use ;