Skip to content

Commit

Permalink
chore: set log level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Sep 5, 2024
1 parent 110e625 commit 7e506db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
APP_SHA: ${{ github.sha }}
APP_REF: ${{ github.ref }}
PACT_LD_LIBRARY_PATH: /tmp
LOG_LEVEL: DEBUG
LOG_LEVEL: INFO
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
Expand Down
4 changes: 2 additions & 2 deletions examples/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var requestFilterCalled = false
var stateHandlerCalled = false

func TestV3HTTPProvider(t *testing.T) {
log.SetLogLevel("TRACE")
log.SetLogLevel("INFO")
version.CheckVersion()

// Start provider API in the background
Expand Down Expand Up @@ -138,7 +138,7 @@ func TestV3HTTPProvider(t *testing.T) {
}

func TestV3MessageProvider(t *testing.T) {
log.SetLogLevel("TRACE")
log.SetLogLevel("INFO")
var user *User

verifier := provider.NewVerifier()
Expand Down

0 comments on commit 7e506db

Please sign in to comment.