From c009f1a9335e09a47190af395dc48df66e12eb04 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 22 Mar 2025 10:09:21 +0100 Subject: [PATCH] Log less --- src/analyzer/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/analyzer/main.cpp b/src/analyzer/main.cpp index e8ac862c..1627c1eb 100644 --- a/src/analyzer/main.cpp +++ b/src/analyzer/main.cpp @@ -165,7 +165,7 @@ namespace { static uint64_t count{0}; ++count; - if (count > 100 && count % 10000 != 0) + if (count > 100 && count % 100000 != 0) { return; } @@ -187,7 +187,7 @@ namespace { static uint64_t count{0}; ++count; - if (count > 100 && count % 10000 != 0) + if (count > 100 && count % 100000 != 0) { return; }