Skip to content

Commit 3e7f1a3

Browse files
committed
Merge release 2.35 into 3.1
2 parents b7a3946 + 71a237b commit 3e7f1a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,8 @@ private boolean bind(final Class<?> clazz, final Set<Class<?>> providerContracts
307307
final boolean isJaxRsResource = runtimeSpecifics.isJaxRsResource(clazz);
308308

309309
if (isJaxRsResource && !runtimeSpecifics.isAcceptableResource(clazz)) {
310-
LOGGER.warning(LocalizationMessages.CDI_NON_INSTANTIABLE_COMPONENT(clazz));
310+
LOGGER.log(clazz.isInterface() ? Level.FINE : Level.WARNING,
311+
LocalizationMessages.CDI_NON_INSTANTIABLE_COMPONENT(clazz));
311312
return false;
312313
}
313314

0 commit comments

Comments
 (0)