From 67bf421fee530d55411ba5b495930ce0b404ff74 Mon Sep 17 00:00:00 2001 From: Yuto Kawamura Date: Thu, 22 Aug 2024 21:22:47 +0900 Subject: [PATCH] Lower log level of partition processor core creation, to be virtual thread friendly (#245) --- .../linecorp/decaton/processor/runtime/internal/Processors.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/src/main/java/com/linecorp/decaton/processor/runtime/internal/Processors.java b/processor/src/main/java/com/linecorp/decaton/processor/runtime/internal/Processors.java index c7d61991..982d2e8f 100644 --- a/processor/src/main/java/com/linecorp/decaton/processor/runtime/internal/Processors.java +++ b/processor/src/main/java/com/linecorp/decaton/processor/runtime/internal/Processors.java @@ -72,7 +72,7 @@ public ProcessPipeline newPipeline(ThreadScope scope, TaskExtractor taskExtractor = extractorFromTopic(scope); try { List> processors = createProcessors(scope); - logger.info("Creating partition processor core: {}", scope); + logger.debug("Creating partition processor core: {}", scope); return new ProcessPipeline<>(scope, processors, retryProcessor, taskExtractor, scheduler, metrics); } catch (Exception e) { // Catching Exception instead of RuntimeException, since