Skip to content

Commit

Permalink
Merge pull request #279 from svolsky/dont_log_error
Browse files Browse the repository at this point in the history
Don't log error when WEB_PARAM_ANNOTATION_CLASS not found
  • Loading branch information
briandilley authored May 24, 2023
2 parents c13f544 + 230bbc0 commit 82e7373
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private static void loadAnnotationSupportEngine() {
WEB_PARAM_ANNOTATION_CLASS = classLoader.loadClass(WEB_PARAM_ANNOTATION_CLASS_LOADER).asSubclass(Annotation.class);
WEB_PARAM_NAME_METHOD = WEB_PARAM_ANNOTATION_CLASS.getMethod(NAME);
} catch (ClassNotFoundException | NoSuchMethodException e) {
logger.error("Could not find {}.{}", WEB_PARAM_ANNOTATION_CLASS_LOADER, NAME, e);
logger.debug("Could not find {}.{}", WEB_PARAM_ANNOTATION_CLASS_LOADER, NAME);
}
}

Expand Down

0 comments on commit 82e7373

Please sign in to comment.