|
From: Markus B. <mba...@us...> - 2005-09-07 21:21:16
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22931/src/org/rubypeople/rdt/core Modified Files: RubyCore.java Log Message: added modelmanager trace option Index: RubyCore.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/RubyCore.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** RubyCore.java 5 Sep 2005 16:44:21 -0000 1.12 --- RubyCore.java 7 Sep 2005 21:21:08 -0000 1.13 *************** *** 188,191 **** --- 188,195 ---- String rubyParserOption = Platform.getDebugOption(RubyCore.PLUGIN_ID + "/rubyparser"); RubyParser.setDebugging(rubyParserOption == null ? false : rubyParserOption.equalsIgnoreCase("true")); + + String modelManagerOption = Platform.getDebugOption(RubyCore.PLUGIN_ID + "/modelmanager"); + RubyModelManager.VERBOSE = modelManagerOption == null ? false : rubyParserOption.equalsIgnoreCase("true"); + } |