修飾子とタイプ | フィールドと説明 |
---|---|
static String |
PROPS_PREFIX
プロパティ名のプレフィックス
|
修飾子とタイプ | メソッドと説明 |
---|---|
protected String |
getEndLogFormat()
終了ログのフォーマットを取得する。
|
protected Map<LogItem> |
getEndLogItems()
終了ログ用のログ出力項目を生成する。
|
String |
getEndLogMsg(int exitCode,
long executeTime)
終了ログを生成する。
|
protected String |
getStartLogFormat()
開始ログのフォーマットを取得する。
|
protected Map<LogItem> |
getStartLogItems()
開始ログ用のログ出力項目を生成する。
|
String |
getStartLogMsg(CommandLine commandLine)
開始ログを生成する。
|
public String getStartLogMsg(CommandLine commandLine)
LauncherLogFormatter.getStartLogFormat()
から取得したログフォーマットに従いログメッセージ生成を行う。commandLine
- コマンドラインオブジェクト
public String getEndLogMsg(int exitCode, long executeTime)
LauncherLogFormatter.getEndLogFormat()
から取得したログフォーマットに従いログメッセージの生成を行う。exitCode
- 終了コードexecuteTime
- 処理時間protected String getStartLogFormat()
launcherLogFormatter.startFormat = @@@@ BEGIN @@@@\n\tcommandLineArguments = [$commandLineArguments$]
protected String getEndLogFormat()
launcherLogFormatter.endFormat = @@@@ END @@@@ execute time(ms) = [$executeTime$], exit code = [$exitCode$]