From e6f1691cca5f1b836193effd628880517ffb25e8 Mon Sep 17 00:00:00 2001 From: Nick Sanford Date: Tue, 8 Oct 2024 11:33:58 -0400 Subject: [PATCH] downgrade-sync-path-log-to-debug --- services/datamanager/builtin/sync/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/datamanager/builtin/sync/sync.go b/services/datamanager/builtin/sync/sync.go index 0d95cc51dba..d99d7097fd2 100644 --- a/services/datamanager/builtin/sync/sync.go +++ b/services/datamanager/builtin/sync/sync.go @@ -552,7 +552,7 @@ func (s *Sync) walkDirsAndSendFilesToSync(ctx context.Context, config Config) er s.flushCollectors() var errs []error for _, dir := range config.SyncPaths() { - s.logger.Infof("syncing from: %s", dir) + s.logger.Debugf("syncing from: %s", dir) loggedDirPaths := map[string]bool{} // Retrieve all files in capture dir and send them to the syncer err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {