From b5437b36ea0ec662f78a01bc16cfc1bc8c57d564 Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Sat, 24 Feb 2024 22:37:28 +0000 Subject: [PATCH] drop log level --- .github/workflows/test.yml | 2 +- internal/native/mock_server_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e964f7f36..8087be2f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ env: APP_REF: ${{ github.ref }} # LD_LIBRARY_PATH: /tmp # PACT_GO_LIB_DOWNLOAD_PATH: /tmp - LOG_LEVEL: debug + LOG_LEVEL: info COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: diff --git a/internal/native/mock_server_test.go b/internal/native/mock_server_test.go index bb3303acc..43215fff7 100644 --- a/internal/native/mock_server_test.go +++ b/internal/native/mock_server_test.go @@ -167,7 +167,7 @@ func TestHandleBasedHTTPTests(t *testing.T) { func TestPluginInteraction(t *testing.T) { tmpPactFolder, err := os.MkdirTemp("", "pact-go") assert.NoError(t, err) - _ = log.SetLogLevel("trace") + _ = log.SetLogLevel("info") m := NewHTTPPact("test-plugin-consumer", "test-plugin-provider")