File tree 1 file changed +4
-4
lines changed
client/src/main/java/io/split/client/metrics
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public void time(Latency dto) {
50
50
try {
51
51
post (_timeTarget , dto );
52
52
} catch (Throwable t ) {
53
- _log .warn ("Exception when posting metric" + dto , t );
53
+ _log .warn ("Exception when posting metric " + dto , t );
54
54
}
55
55
;
56
56
@@ -61,7 +61,7 @@ public void count(Counter dto) {
61
61
try {
62
62
post (_counterTarget , dto );
63
63
} catch (Throwable t ) {
64
- _log .warn ("Exception when posting metric" + dto , t );
64
+ _log .warn ("Exception when posting metric " + dto , t );
65
65
}
66
66
67
67
}
@@ -85,9 +85,9 @@ private void post(URI uri, Object dto) {
85
85
}
86
86
87
87
} catch (Throwable t ) {
88
- _log .warn ("Exception when posting metrics:" + t .getMessage ());
88
+ _log .warn ("Exception when posting metrics: " + t .getMessage ());
89
89
if (_log .isDebugEnabled ()) {
90
- _log .debug ("Reason:" , t );
90
+ _log .debug ("Reason: " , t );
91
91
}
92
92
} finally {
93
93
Utils .forceClose (response );
You can’t perform that action at this time.
0 commit comments