Skip to content

Commit

Permalink
Fix Severity const
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared committed Dec 27, 2023
1 parent 5ec6098 commit efb8d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/record.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type Severity int
// Severity values defined by OpenTelemetry.
const (
// A fine-grained debugging log record. Typically disabled in default configurations.
SeverityTrace Severity = 1
SeverityTrace Severity = iota + 1
SeverityTrace2
SeverityTrace3
SeverityTrace4
Expand Down

0 comments on commit efb8d83

Please sign in to comment.