From 94f4a264bfd3140966745f4e7b5418677e9faead Mon Sep 17 00:00:00 2001 From: pascal Date: Thu, 9 Apr 2026 16:40:32 +0200 Subject: [PATCH] fix log --- .../modules/reverseproxy/accesslogs/manager/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/internals/modules/reverseproxy/accesslogs/manager/manager.go b/management/internals/modules/reverseproxy/accesslogs/manager/manager.go index 84f1eed7e..59d7704eb 100644 --- a/management/internals/modules/reverseproxy/accesslogs/manager/manager.go +++ b/management/internals/modules/reverseproxy/accesslogs/manager/manager.go @@ -107,7 +107,7 @@ func (m *managerImpl) CleanupOldAccessLogs(ctx context.Context, retentionDays in // StartPeriodicCleanup starts a background goroutine that periodically cleans up old access logs func (m *managerImpl) StartPeriodicCleanup(ctx context.Context, retentionDays, cleanupIntervalHours int) { if retentionDays < 0 { - log.WithContext(ctx).Debug("periodic access log cleanup disabled: retention days is 0 or negative") + log.WithContext(ctx).Debug("periodic access log cleanup disabled: retention days is negative") return }