mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
22 lines
439 B
Rust
22 lines
439 B
Rust
//! Logger of the system.
|
|
|
|
pub use tracing::{debug, error, event as log, info, warn};
|
|
pub use tracing_attributes::instrument;
|
|
|
|
pub mod config;
|
|
mod defaults;
|
|
pub use crate::config::Config;
|
|
|
|
// mod macros;
|
|
pub mod types;
|
|
pub use types::{Category, Flow, Level, Tag};
|
|
|
|
mod setup;
|
|
pub use setup::{setup, TelemetryGuard};
|
|
|
|
pub mod formatter;
|
|
pub use formatter::FormattingLayer;
|
|
|
|
pub mod storage;
|
|
pub use storage::{Storage, StorageSubscription};
|