if (level.toInt() >= Priority.ERROR_INT) {
severity = IStatus.ERROR;
} else if (level.toInt() >= Priority.WARN_INT) {
severity = IStatus.WARNING;
} else if (level.toInt() >= Priority.DEBUG_INT) {
severity = IStatus.INFO;
}
if (fVerbose || !(severity == IStatus.INFO)) {
fPluginLog.log(new Status(severity, fPluginLog.getBundle().getSymbolicName(), level.toInt(), text, thrown));