Skip to content

Commit

Permalink
[bugfix] As these are plugins log a Warning and not an Error if the p…
Browse files Browse the repository at this point in the history
…lugin is unavailable
  • Loading branch information
adamretter committed Oct 3, 2024
1 parent e013cd0 commit 320cf57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public void addPlugin(final String className) {
// NOTE: must set interrupted flag
Thread.currentThread().interrupt();
}
LOG.error(e);
LOG.warn(e);
}
}

Expand Down

0 comments on commit 320cf57

Please sign in to comment.