File tree 2 files changed +4
-3
lines changed
src/main/java/com/wire/lithium
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.wire</groupId >
8
8
<artifactId >lithium</artifactId >
9
- <version >3.0.0 </version >
9
+ <version >3.0.1 </version >
10
10
<packaging >jar</packaging >
11
11
12
12
<properties >
120
120
<artifactId >maven-compiler-plugin</artifactId >
121
121
<version >3.8.1</version >
122
122
<configuration >
123
- <release >14</release >
123
+ <source >1.8</source >
124
+ <target >1.8</target >
124
125
</configuration >
125
126
</plugin >
126
127
<plugin >
Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ private void runHealthChecks() {
266
266
for (String name : results .keySet ()) {
267
267
final HealthCheck .Result result = results .get (name );
268
268
if (!result .isHealthy ()) {
269
- Logger .error ("% failed with: %s" , name , result .getMessage ());
269
+ Logger .error ("%s failed with: %s" , name , result .getMessage ());
270
270
throw new RuntimeException (result .getError ());
271
271
}
272
272
}
You can’t perform that action at this time.
0 commit comments