// instrument mbeans
Iterator iter = mbeans.iterator();
while (iter.hasNext()) {
ObjectName on = (ObjectName) iter.next();
try {
mm.model(on, queryService);
} catch (AS_ObjectNameNotFoundException onfe) {
Utils.log(Level.INFO, "No mbean mapping found for: " + on);
//"No mbean mapping found for: " + on, onfe);
} catch (Exception e) {
Utils.log(Level.INFO, "Error while instrumenting mbean: " + on.getCanonicalName(), e);