system.out.println()
Servlet である JIRA プラグインを実行しているときに、Eclipse でフローと変数の値をチェックするものを使用してプログラムをデバッグしたいと考えています。Eclipse でコードに変更を加えると、ブラウザーに反映されますが、使用するsystem.out.println
と出力はどこに表示されますか?
コード例:
@RequiresXsrfCheck
protected String doExecute()
{
LOG.info("BulkCloneDetails doExecute start...");
filterUrl = null;
cloneSubTasks = false;
cloneAttachments = false;
deleteAfterClone = false;
requestId = null;
issues = null;
getServerInfoFromPage();
**System.out.println("Print something here");**
errorsCollection.put("filterPath", i18n.getText("Remote login failed"));
addErrors(errorsCollection);
return SUCCESS;
}