From 8732fc7226bd6a2937a6f5b441b67e03c46bf1f3 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 5 Mar 2025 20:54:06 -0500 Subject: [PATCH] fix(server): change log level for some unimportant messages Signed-off-by: Deluan --- cmd/root.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 0ef1e7601..e1e92228f 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -139,7 +139,7 @@ func schedulePeriodicScan(ctx context.Context) func() error { return func() error { schedule := conf.Server.Scanner.Schedule if schedule == "" { - log.Warn(ctx, "Periodic scan is DISABLED") + log.Info(ctx, "Periodic scan is DISABLED") return nil } @@ -236,7 +236,7 @@ func schedulePeriodicBackup(ctx context.Context) func() error { return func() error { schedule := conf.Server.Backup.Schedule if schedule == "" { - log.Warn(ctx, "Periodic backup is DISABLED") + log.Info(ctx, "Periodic backup is DISABLED") return nil }