Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Jul 26, 2024
1 parent c252e3c commit 2c0dc58
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fail_level.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ const (
// FailLevelDefault represents default mode, which means users doesn't specify
// fail-level. Basically, it's same as FailLevelNone.
FailLevelDefault FailLevel = iota
// FailLevelNone - Do not fail.
FailLevelNone
// FailLevelAny - Fail with any severity.
FailLevelAny
// FailLevelInfo - Fail with info or above severity.
FailLevelInfo
// FailLevelWarning - Fail with warning or above severity.
FailLevelWarning
// FailLevelError - Fail with error or above severity.
FailLevelError
)

Expand Down

0 comments on commit 2c0dc58

Please sign in to comment.