Nothing fancy here... but you can now:

geronimo/start-server --profile debug
which will flip on the standard debug flags. This is done via the etc/ rc.d script with:

// If the debug profile was selected, then append some debugging flags
if (command.profiles.contains('debug')) {
    command.javaFlags << '-Xdebug'
command.javaFlags << '- Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000'
}
Maybe later we can work on making it easier for folks to change the values w/o changing the file... but for now this will do.

--jason

Reply via email to