From 86b061421eb23696523c5ef8346eebee12bc564b Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Wed, 6 Sep 2023 14:41:42 +0200 Subject: [PATCH] Disable debug log during test --- services/graph/pkg/service/v0/educationclasses_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/graph/pkg/service/v0/educationclasses_test.go b/services/graph/pkg/service/v0/educationclasses_test.go index 24b7d5f086..765b19e801 100644 --- a/services/graph/pkg/service/v0/educationclasses_test.go +++ b/services/graph/pkg/service/v0/educationclasses_test.go @@ -18,7 +18,6 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" libregraph "github.com/owncloud/libre-graph-api-go" - "github.com/owncloud/ocis/v2/ocis-pkg/log" "github.com/owncloud/ocis/v2/ocis-pkg/shared" "github.com/owncloud/ocis/v2/services/graph/mocks" "github.com/owncloud/ocis/v2/services/graph/pkg/config" @@ -85,7 +84,6 @@ var _ = Describe("EducationClass", func() { service.EventsPublisher(&eventsPublisher), service.WithIdentityBackend(identityBackend), service.WithIdentityEducationBackend(identityEducationBackend), - service.Logger(log.NewLogger(log.Level("debug"))), ) })