# HG changeset patch # User Doug Simon # Date 1344036974 -7200 # Node ID f84a603283be76ad946dc180d44037ce0713a467 # Parent a7b2eaf364dee4b519c95d97d9f0655a758c673f issue message about -G:+PrintFlags when an unrecognized -G options is passed to the VM diff -r a7b2eaf364de -r f84a603283be graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotOptions.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotOptions.java Sat Aug 04 01:35:01 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotOptions.java Sat Aug 04 01:36:14 2012 +0200 @@ -105,7 +105,7 @@ Logger.info("Security exception when setting option " + option); return false; } catch (NoSuchFieldException e) { - Logger.info("Could not find option " + fieldName); + Logger.info("Could not find option " + fieldName + " (use -G:+PrintFlags to see Graal options)"); return false; } catch (IllegalArgumentException e) { Logger.info("Illegal value for option " + option);