Index: ejb/ejb-container/src/main/java/com/sun/ejb/containers/BaseContainer.java =================================================================== --- ejb/ejb-container/src/main/java/com/sun/ejb/containers/BaseContainer.java (revision 42703) +++ ejb/ejb-container/src/main/java/com/sun/ejb/containers/BaseContainer.java (working copy) @@ -3269,7 +3269,7 @@ (isLocal ? "LocalHome" : "Home"), invInfo.method.toString() }; _logger.log(Level.WARNING, - "ejb.bean_class_method_not_found", params); + "ejb.bean_class_method_not_found_warning", params); // Treat this as a warning instead of a fatal error. // That matches the behavior of the generated code. // Mark the target methods as null. If this method is @@ -3328,7 +3328,7 @@ (isLocal ? "Local" : "Remote"), invInfo.method.toString() }; _logger.log(Level.WARNING, - "ejb.bean_class_method_not_found", params); + "ejb.bean_class_method_not_found_warning", params); // Treat this as a warning instead of a fatal error. // That matches the behavior of the generated code. // Mark the target methods as null. If this method is Index: ejb/ejb-container/src/main/resources/com/sun/logging/enterprise/system/container/ejb/LogStrings.properties =================================================================== --- ejb/ejb-container/src/main/resources/com/sun/logging/enterprise/system/container/ejb/LogStrings.properties (revision 42703) +++ ejb/ejb-container/src/main/resources/com/sun/logging/enterprise/system/container/ejb/LogStrings.properties (working copy) @@ -205,7 +205,6 @@ base.stats.cache.register.error=EJB5166:Unexpected error while registering cache stats for {0} ; {1} ; {2} base.stats.cache.unregister.monreg.error=EJB5167:Error while unregistering cache stats for {0} ; {1} ; {2} base.stats.cache.unregister.error=EJB5168:Unexpected error while unregistering cache stats for {0} ; {1} ; {2} -ejb.timer_reschedule_after_max_deliveries=EJB5169:Rescheduling timer [{0}] after [{1}] redeliveries # Embedded EJB container ejb.embedded.exception_instantiating=EJB5169:Caught exception instantiating EmbeddedContainer. @@ -281,3 +280,7 @@ method_descriptor_not_defined=EJB5186:JACC: EJB Method Descriptor not defined for Ejb {0}, MethodName {1}, MethodParameters {2} EJB5186.diag.cause.1=The Method Interface specified is either empty or null EJB5186.diag.check.1=Check to see if the EJB name and the method interfaces are correct + +#various log messages (that didn't fit anymore in the ranges above) +ejb.timer_reschedule_after_max_deliveries=EJB5191:Rescheduling timer [{0}] after [{1}] redeliveries +ejb.bean_class_method_not_found_warning=EJB5192:Bean class for ejb [{0}] does not define a method corresponding to [{1}] interface method [{2}]