From 7022cf5d29d8fb102213bb9b1a9987c8f9d344dc Mon Sep 17 00:00:00 2001 From: link Date: Wed, 22 Mar 2023 14:07:01 +0800 Subject: [PATCH] Add test log init (#971) --- service/other_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/service/other_test.go b/service/other_test.go index 700ac3b..f74c5b5 100644 --- a/service/other_test.go +++ b/service/other_test.go @@ -3,10 +3,12 @@ package service import ( "testing" + "github.com/IceWhaleTech/CasaOS-Common/utils/logger" "go.uber.org/goleak" ) func TestSearch(t *testing.T) { + logger.LogInitConsoleOnly() goleak.VerifyNone(t) if d, e := NewOtherService().Search("test"); e != nil || d == nil {