feat: Better checks on if semvar has changes prior to writing to a file.
All checks were successful
CI / Ubuntu (push) Successful in 2m51s

This commit is contained in:
2024-12-26 13:06:31 -05:00
parent a0f8611a76
commit 2650bdc670
7 changed files with 37 additions and 18 deletions

View File

@@ -7,7 +7,7 @@ public extension Logger.Level {
switch verbose {
case 1: self = .debug
case 2...: self = .trace
default: self = .warning
default: self = .info
}
}
}