Skip to content

Commit

Permalink
[GH-6725] LoggerFactory slf4j related regression fix (#15918)
Browse files Browse the repository at this point in the history
  • Loading branch information
mn-mikke authored Nov 13, 2023
1 parent 437e432 commit 7fa093b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h2o-logger/src/main/java/water/logging/LoggerFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private boolean isWaterLogAvailable() {
try {
Class.forName(waterLogClassName);
return true;
} catch (ClassNotFoundException e) {
} catch (ClassNotFoundException | NoClassDefFoundError e) {
return false;
}
}
Expand Down

0 comments on commit 7fa093b

Please sign in to comment.