doxy/Library/Sources/Public/Extensions/Environment+Properties.swift

13 lines
214 B
Swift
Raw Normal View History

2025-02-22 10:21:07 +01:00
import Hummingbird
extension Environment {
// MARK: Computed
/// The logging level set in the environment variables.
2025-02-22 10:21:07 +01:00
public var logLevel: String? {
self.get("LOG_LEVEL")
}
}