From 7894f673b18e671924dd757a92eb1e976f9924d1 Mon Sep 17 00:00:00 2001 From: "mayur.popli" Date: Fri, 21 Mar 2025 12:27:52 +0530 Subject: [PATCH] fix: logging module comments --- pkg/log/log_test.go | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/pkg/log/log_test.go b/pkg/log/log_test.go index 26c2815..bfdc9bc 100644 --- a/pkg/log/log_test.go +++ b/pkg/log/log_test.go @@ -18,15 +18,7 @@ func TestLogFunctions(t *testing.T) { testConfig := Config{ level: DebugLevel, destinations: []Destination{ - { - Type: File, - Config: map[string]string{ - "path": "log/app.txt", - "maxSize": "500", - "maxBackups": "15", - "maxAge": "30", - }, - }, + {Type: Stdout}, }, contextKeys: []any{"userID", "requestID"}, }