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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Log level enumeration for the logwise logging system.
//!
//! The `Level` enum defines the different severity levels available in logwise,
//! each with specific semantics about when they are active and where they should
//! be used. Unlike traditional logging systems, logwise uses opinionated levels
//! that correspond to specific use cases rather than generic severity indicators.
use Display;
/// Log severity levels with opinionated use-case semantics.
///
/// Unlike traditional logging systems with generic severity levels, logwise provides
/// specific levels for defined use cases. Each level has different availability
/// depending on build type (debug vs release) and runtime configuration.
///
/// # Level Hierarchy
///
/// The levels are ordered by severity from lowest to highest:
/// `Trace` < `DebugInternal` < `Info` < `Analytics` < `PerfWarn` < `Warning` < `Error` < `Panic` < `Mandatory` < `Profile`
///
/// # Build-Time Availability
///
/// | Level | Debug Builds | Release Builds |
/// |-------|--------------|----------------|
/// | `Trace` | ✓ (with tracing enabled) | ✗ |
/// | `DebugInternal` | ✓ | ✗ |
/// | `Info` | ✓ | ✗ |
/// | `Analytics` | ✓ | ✓ |
/// | `PerfWarn` | ✓ | ✓ |
/// | `Warning` | ✓ | ✓ |
/// | `Error` | ✓ | ✓ |
/// | `Panic` | ✓ | ✓ |
/// | `Mandatory` | ✓ | ✓ |
/// | `Profile` | ✓ | ✓ |
// ============================================================================
// BOILERPLATE TRAIT IMPLEMENTATIONS
// ============================================================================
//
// Design decisions for Level trait implementations:
//
// IMPLEMENTED:
// - Debug/Clone/Copy: Already derived - appropriate for simple enum
// - PartialEq/Eq: Already derived - enables level comparison
// - PartialOrd/Ord: Already derived - establishes severity ordering (Trace < ... < Panic)
// - Hash: Already derived - consistent with Eq, enables use in hash collections
// - Display: Implemented - provides user-friendly string representation
// - #[non_exhaustive]: Applied - allows adding new levels without breaking changes
//
// NOT IMPLEMENTED:
// - Default: No obvious default level - application-specific choice
// - From/Into: No obvious conversions to/from other types
// - AsRef/AsMut: Enum doesn't naturally reference an underlying type
//
// AUTOMATIC:
// - Send/Sync: Automatically implemented - simple enum with no heap data