Skip to content

Commit

Permalink
merge release history into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
senivam authored Sep 16, 2021
2 parents 6d8a6ff + 4446ac3 commit 024abee
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ private boolean bind(final Class<?> clazz, final Set<Class<?>> providerContracts
final boolean isJaxRsResource = runtimeSpecifics.isJaxRsResource(clazz);

if (isJaxRsResource && !runtimeSpecifics.isAcceptableResource(clazz)) {
LOGGER.warning(LocalizationMessages.CDI_NON_INSTANTIABLE_COMPONENT(clazz));
LOGGER.log(clazz.isInterface() ? Level.FINE : Level.WARNING,
LocalizationMessages.CDI_NON_INSTANTIABLE_COMPONENT(clazz));
return false;
}

Expand Down

0 comments on commit 024abee

Please sign in to comment.