Skip to content

Commit aea897f

Browse files
Changing log level
1 parent fc1a11a commit aea897f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

client/src/main/java/io/split/engine/experiments/SplitSynchronizationTask.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public SplitSynchronizationTask(SplitFetcher splitFetcher, SplitCache splitCache
5555

5656
public void startPeriodicFetching() {
5757
if (_running.getAndSet(true)) {
58-
_log.warn("Splits PeriodicFetching is running...");
58+
_log.debug("Splits PeriodicFetching is running...");
5959
return;
6060
}
6161

@@ -65,7 +65,7 @@ public void startPeriodicFetching() {
6565

6666
public void stop() {
6767
if (!_running.getAndSet(false) || _scheduledFuture == null) {
68-
_log.warn("Splits PeriodicFetching not running...");
68+
_log.debug("Splits PeriodicFetching not running...");
6969
return;
7070
}
7171

client/src/main/java/io/split/engine/segments/SegmentSynchronizationTaskImp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public SegmentFetcher getFetcher(String segmentName) {
103103
@Override
104104
public void startPeriodicFetching() {
105105
if (_running.getAndSet(true)) {
106-
_log.warn("Segments PeriodicFetching is running...");
106+
_log.debug("Segments PeriodicFetching is running...");
107107
return;
108108
}
109109

@@ -114,7 +114,7 @@ public void startPeriodicFetching() {
114114
@Override
115115
public void stop() {
116116
if (!_running.getAndSet(false) || _scheduledFuture == null) {
117-
_log.warn("Segments PeriodicFetching not running...");
117+
_log.debug("Segments PeriodicFetching not running...");
118118
return;
119119
}
120120

0 commit comments

Comments
 (0)