Skip to content

Commit 4db8c2c

Browse files
committed
fixup formatting
1 parent 8adba90 commit 4db8c2c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Package.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,14 @@ let package = Package(
2525
.trait(name: "MaxLogLevelDebug", description: "Debug and above available (compiles out trace)"),
2626
.trait(name: "MaxLogLevelInfo", description: "Info and above available (compiles out trace, debug)"),
2727
.trait(name: "MaxLogLevelNotice", description: "Notice and above available (compiles out trace, debug, info)"),
28-
.trait(name: "MaxLogLevelWarning", description: "Warning and above available (compiles out trace, debug, info, notice)"),
29-
.trait(name: "MaxLogLevelError", description: "Error and above available (compiles out trace, debug, info, notice, warning)"),
28+
.trait(
29+
name: "MaxLogLevelWarning",
30+
description: "Warning and above available (compiles out trace, debug, info, notice)"
31+
),
32+
.trait(
33+
name: "MaxLogLevelError",
34+
description: "Error and above available (compiles out trace, debug, info, notice, warning)"
35+
),
3036
.trait(name: "MaxLogLevelCritical", description: "Only critical available (compiles out all except critical)"),
3137
.trait(name: "MaxLogLevelNone", description: "All logging compiled out (no log levels available)"),
3238

0 commit comments

Comments
 (0)