From c14137655773abe0c75d3633e90abfd072474433 Mon Sep 17 00:00:00 2001 From: Jared Tan Date: Thu, 6 Dec 2018 21:46:40 +0800 Subject: [PATCH] fix https://github.com/apache/incubator-skywalking/issues/1820. (#2013) --- .../skywalking/apm/agent/core/sampling/SamplingService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/sampling/SamplingService.java b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/sampling/SamplingService.java index db3ce688c..7c07c66c0 100644 --- a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/sampling/SamplingService.java +++ b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/sampling/SamplingService.java @@ -79,7 +79,7 @@ public class SamplingService implements BootService { logger.error("unexpected exception.", t); } }), 0, 3, TimeUnit.SECONDS); - logger.debug("Agent sampling mechanism started. Sample {} traces in 10 seconds.", Config.Agent.SAMPLE_N_PER_3_SECS); + logger.debug("Agent sampling mechanism started. Sample {} traces in 3 seconds.", Config.Agent.SAMPLE_N_PER_3_SECS); } }