You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ta...@apache.org on 2018/12/06 13:46:46 UTC

[incubator-skywalking] branch master updated: fix https://github.com/apache/incubator-skywalking/issues/1820. (#2013)

This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new c141376  fix https://github.com/apache/incubator-skywalking/issues/1820. (#2013)
c141376 is described below

commit c14137655773abe0c75d3633e90abfd072474433
Author: Jared Tan <ji...@daocloud.io>
AuthorDate: Thu Dec 6 21:46:40 2018 +0800

    fix https://github.com/apache/incubator-skywalking/issues/1820. (#2013)
---
 .../org/apache/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 db3ce68..7c07c66 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);
         }
     }