From b54b373757826caad86628bf696b54e3008ed900 Mon Sep 17 00:00:00 2001 From: Wang Yan Date: Tue, 16 Jan 2024 09:36:22 +0800 Subject: [PATCH] [cherry-pick]remove the log for ScannerSkipUpdatePullTime (#19847) remove the log for ScannerSkipUpdatePullTime 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 e22b438f7eb..dc236b4c8ea 100644 --- a/src/lib/config/userconfig.go +++ b/src/lib/config/userconfig.go @@ -252,7 +252,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() }