timber_rust 2.0.1

A high-performance, asynchronous logging library with support for Grafana Loki and AWS CloudWatch.
1
2
3
4
5
6
7
8
9

/// Represents the operational state of a logging [backend service][`crate::Service`].
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Status {
    /// The service is active and ready to process messages.
    Running,
    /// The service has encountered a failure and cannot process messages.
    Broken,
}