From fdc012c2372ba21b4cbb7299e573a2d34e7eb6c1 Mon Sep 17 00:00:00 2001 From: Wang Yan Date: Mon, 15 Jan 2024 17:47:16 +0800 Subject: [PATCH] remove the log for ScannerSkipUpdatePullTime (#19845) fixes #19795, remove the noise in the log Signed-off-by: wang yan --- src/lib/config/userconfig.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/config/userconfig.go b/src/lib/config/userconfig.go index 0192e6f58..a0fd5f90a 100644 --- a/src/lib/config/userconfig.go +++ b/src/lib/config/userconfig.go @@ -253,7 +253,6 @@ func SkipAuditLogDatabase(ctx context.Context) bool { // ScannerSkipUpdatePullTime returns the scanner skip update pull time setting func ScannerSkipUpdatePullTime(ctx context.Context) bool { - log.Infof("skip_update_pull_time:%v", DefaultMgr().Get(ctx, common.ScannerSkipUpdatePullTime).GetBool()) return DefaultMgr().Get(ctx, common.ScannerSkipUpdatePullTime).GetBool() }