From be133b88563e4bcab46ee3ead3023bf9030ae9cc Mon Sep 17 00:00:00 2001 From: Daniel <dhaavi@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:43:59 +0100 Subject: [PATCH] Improve filterlist ingestion logging --- service/intel/filterlists/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/intel/filterlists/database.go b/service/intel/filterlists/database.go index 6de070bb..19dbb6fc 100644 --- a/service/intel/filterlists/database.go +++ b/service/intel/filterlists/database.go @@ -146,7 +146,7 @@ func persistRecords(startJob func(func() error), records <-chan record.Record) { timePerEntity := time.Since(start) / time.Duration(cnt) speed := float64(time.Second) / float64(timePerEntity) - log.Debugf("processed %d entities in %s with %s / entity (%.2f entities/second)", cnt, time.Since(start), timePerEntity, speed) + log.Debugf("intel/filterlists: processed %d entities in %s with %s / entity (%.2f entities/second)", cnt, time.Since(start), timePerEntity, speed) } batch := database.NewInterface(&database.Options{Local: true, Internal: true})