提交 e824f1ca 编写于 作者: D dfuchs

6592586: RequiredModelMBean prints a WARNING message when calling...

6592586: RequiredModelMBean prints a WARNING message when calling getAttributes() for a non-existing attr
Summary: Switched traces to FINER - except when logging fails - in which cases the traces are logged to FINE
Reviewed-by: emcmanus
上级 5adc869f
...@@ -1696,8 +1696,8 @@ public class RequiredModelMBean ...@@ -1696,8 +1696,8 @@ public class RequiredModelMBean
} catch (Exception e) { } catch (Exception e) {
// eat exceptions because interface doesn't have an // eat exceptions because interface doesn't have an
// exception on it // exception on it
if (MODELMBEAN_LOGGER.isLoggable(Level.WARNING)) { if (MODELMBEAN_LOGGER.isLoggable(Level.FINER)) {
MODELMBEAN_LOGGER.logp(Level.WARNING, MODELMBEAN_LOGGER.logp(Level.FINER,
RequiredModelMBean.class.getName(), RequiredModelMBean.class.getName(),
"getAttributes(String[])", "getAttributes(String[])",
"Failed to get \"" + attrNames[i] + "\": ", e); "Failed to get \"" + attrNames[i] + "\": ", e);
...@@ -1857,8 +1857,8 @@ public class RequiredModelMBean ...@@ -1857,8 +1857,8 @@ public class RequiredModelMBean
attrValue.getClass().getName() + attrValue.getClass().getName() +
" received."); " received.");
} catch (ClassNotFoundException x) { } catch (ClassNotFoundException x) {
if (MODELMBEAN_LOGGER.isLoggable(Level.WARNING)) { if (MODELMBEAN_LOGGER.isLoggable(Level.FINER)) {
MODELMBEAN_LOGGER.logp(Level.WARNING, MODELMBEAN_LOGGER.logp(Level.FINER,
RequiredModelMBean.class.getName(), RequiredModelMBean.class.getName(),
"setAttribute(Attribute)","Class " + "setAttribute(Attribute)","Class " +
attrType + " for attribute " attrType + " for attribute "
...@@ -2224,8 +2224,8 @@ public class RequiredModelMBean ...@@ -2224,8 +2224,8 @@ public class RequiredModelMBean
ntfyObj.getMessage() + " Severity = " + ntfyObj.getMessage() + " Severity = " +
(String)ntfyDesc.getFieldValue("severity")); (String)ntfyDesc.getFieldValue("severity"));
} catch (Exception e) { } catch (Exception e) {
if (MODELMBEAN_LOGGER.isLoggable(Level.WARNING)) { if (MODELMBEAN_LOGGER.isLoggable(Level.FINE)) {
MODELMBEAN_LOGGER.logp(Level.WARNING, MODELMBEAN_LOGGER.logp(Level.FINE,
RequiredModelMBean.class.getName(), RequiredModelMBean.class.getName(),
"sendNotification(Notification)", "sendNotification(Notification)",
"Failed to log " + "Failed to log " +
...@@ -2618,8 +2618,8 @@ public class RequiredModelMBean ...@@ -2618,8 +2618,8 @@ public class RequiredModelMBean
" Old value = " + oldv + " Old value = " + oldv +
" New value = " + newv); " New value = " + newv);
} catch (Exception e) { } catch (Exception e) {
if (MODELMBEAN_LOGGER.isLoggable(Level.WARNING)) { if (MODELMBEAN_LOGGER.isLoggable(Level.FINE)) {
MODELMBEAN_LOGGER.logp(Level.WARNING, MODELMBEAN_LOGGER.logp(Level.FINE,
RequiredModelMBean.class.getName(),mth, RequiredModelMBean.class.getName(),mth,
"Failed to log " + ntfyObj.getType() + "Failed to log " + ntfyObj.getType() +
" notification: ", e); " notification: ", e);
...@@ -2644,8 +2644,8 @@ public class RequiredModelMBean ...@@ -2644,8 +2644,8 @@ public class RequiredModelMBean
" Old value = " + oldv + " Old value = " + oldv +
" New value = " + newv); " New value = " + newv);
} catch (Exception e) { } catch (Exception e) {
if (MODELMBEAN_LOGGER.isLoggable(Level.WARNING)) { if (MODELMBEAN_LOGGER.isLoggable(Level.FINE)) {
MODELMBEAN_LOGGER.logp(Level.WARNING, MODELMBEAN_LOGGER.logp(Level.FINE,
RequiredModelMBean.class.getName(),mth, RequiredModelMBean.class.getName(),mth,
"Failed to log " + ntfyObj.getType() + "Failed to log " + ntfyObj.getType() +
" notification: ", e); " notification: ", e);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册