Made the "logLevel" property for the AppArguments protocol in the sample app target non-optional.

This commit is contained in:
2025-09-30 14:54:00 +02:00
parent 2f03908cc7
commit 6b3cc44a15
3 changed files with 3 additions and 3 deletions
@@ -26,7 +26,7 @@ protocol AppArguments {
var port: Int { get }
/// A log level to configure in a type that interacts with the logging system.
var logLevel: Logger.Level? { get }
var logLevel: Logger.Level { get }
}