Skip to content

Commit

Permalink
Don't log error when WEB_PARAM_ANNOTATION_CLASS not found briandilley…
Browse files Browse the repository at this point in the history
  • Loading branch information
Volskiy Stanislav committed Nov 12, 2021
1 parent 3706d07 commit 230bbc0
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 230bbc0

Please sign in to comment.