Skip to content

Commit

Permalink
fix: add TRACE log level to ensure output is filtered
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Fellows committed Oct 24, 2019
1 parent a1b2964 commit 7851c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsl/pact.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (p *Pact) setupLogging() {
p.LogLevel = "INFO"
}
p.logFilter = &logutils.LevelFilter{
Levels: []logutils.LogLevel{"DEBUG", "INFO", "WARN", "ERROR"},
Levels: []logutils.LogLevel{"TRACE", "DEBUG", "INFO", "WARN", "ERROR"},
MinLevel: logutils.LogLevel(p.LogLevel),
Writer: os.Stderr,
}
Expand Down

0 comments on commit 7851c37

Please sign in to comment.