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 10, 2024
1 parent d06b116 commit d2b1067
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,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 d2b1067

Please sign in to comment.