String logLevelStr = configuration.getAttribute(LaunchConstants.ATTR_LOGLEVEL, (String) null);
if (logLevelStr != null) {
Plugin.getDefault().getLog()
.log(new Status(IStatus.WARNING, Plugin.PLUGIN_ID, 0, MessageFormat.format("The {0} attribute is no longer supported, use {1} instead.", LaunchConstants.ATTR_LOGLEVEL, LaunchConstants.ATTR_TRACE), null));
Level logLevel = Level.parse(logLevelStr);
launcher.setTrace(launcher.getTrace() || logLevel.intValue() <= Level.FINE.intValue());
}
}
protected static MultiStatus createStatus(String message, List<String> errors, List<String> warnings) {
MultiStatus status = new MultiStatus(Plugin.PLUGIN_ID, 0, message, null);