We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644cfe3 commit 3e14357Copy full SHA for 3e14357
visualvm/jmx/src/org/graalvm/visualvm/jmx/impl/JmxSupport.java
@@ -351,8 +351,12 @@ String getFlagValue(String name) {
351
}
352
353
return null;
354
+ } catch (IllegalArgumentException ex) {
355
+ // non-existing VM option
356
+ LOGGER.log(Level.FINE, "getFlagValue", ex); // NOI18N
357
+ return null;
358
} catch (Exception ex) {
- LOGGER.log(Level.INFO,"getFlagValue", ex); // NOI18N
359
+ LOGGER.log(Level.INFO, "getFlagValue", ex); // NOI18N
360
361
362
0 commit comments