Skip to content

Commit 5f84978

Browse files
Merge pull request #205 from splitio/development
Development
2 parents 6e576d6 + c1676f1 commit 5f84978

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

client/CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
CHANGES
22

3+
4.1.6 (Apr 15, 2021)
4+
-Updated log level and message in some messages.
5+
36
4.1.5 (Apr 6, 2021)
47
-Updated: Streaming retry fix.
58

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.split.client</groupId>
77
<artifactId>java-client-parent</artifactId>
8-
<version>4.1.5</version>
8+
<version>4.1.6</version>
99
</parent>
1010
<artifactId>java-client</artifactId>
1111
<packaging>jar</packaging>

client/src/main/java/io/split/client/metrics/HttpMetrics.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void time(Latency dto) {
5050
try {
5151
post(_timeTarget, dto);
5252
} catch (Throwable t) {
53-
_log.warn("Exception when posting metric" + dto, t);
53+
_log.warn("Exception when posting metric " + dto, t);
5454
}
5555
;
5656

@@ -61,7 +61,7 @@ public void count(Counter dto) {
6161
try {
6262
post(_counterTarget, dto);
6363
} catch (Throwable t) {
64-
_log.warn("Exception when posting metric" + dto, t);
64+
_log.warn("Exception when posting metric " + dto, t);
6565
}
6666

6767
}
@@ -85,9 +85,9 @@ private void post(URI uri, Object dto) {
8585
}
8686

8787
} catch (Throwable t) {
88-
_log.warn("Exception when posting metrics:" + t.getMessage());
88+
_log.warn("Exception when posting metrics: " + t.getMessage());
8989
if (_log.isDebugEnabled()) {
90-
_log.debug("Reason:", t);
90+
_log.debug("Reason: ", t);
9191
}
9292
} finally {
9393
Utils.forceClose(response);

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.split.client</groupId>
66
<artifactId>java-client-parent</artifactId>
7-
<version>4.1.5</version>
7+
<version>4.1.6</version>
88
<dependencyManagement>
99
<dependencies>
1010
<dependency>

testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.split.client</groupId>
88
<artifactId>java-client-parent</artifactId>
9-
<version>4.1.5</version>
9+
<version>4.1.6</version>
1010
</parent>
1111

1212
<artifactId>java-client-testing</artifactId>

0 commit comments

Comments
 (0)