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
use crateRecord;
/// Core trait that all log handlers must implement.
///
/// A `Handler` is responsible for writing a log record to a destination
/// such as a file, console, socket, or external service.
///
/// Each handler may optionally declare an `order` weight used for execution
/// within a logger. Lower values are executed first.
///
/// The `log` method determines whether a record is accepted by the handler.
/// If it returns `true`, the record is considered handled and propagation
/// may stop depending on the logger’s bubbling configuration.
// Internal modules for handler implementations
// Re-export all handler implementations
pub use *;
pub use *;