data.add(new NameValuePair("priority", priority));
runBZQuery(issueId, PROCESS_BUG_URL, data, "Changes submitted", login(username, password));
BugReporter.LOG.log(Level.INFO, "Priority of bug {0} was changed to {1}", new Object[]{issueId, priority});
} catch (IOException ex) {
BugReporter.LOG.log(Level.SEVERE, "Priority was not changed", ex);
throw new BugReporterException(ex);
}
}