Skip to content

Commit

Permalink
Rename "Previous Logs" to "Execution Logs"
Browse files Browse the repository at this point in the history
  • Loading branch information
kwin committed Feb 22, 2025
1 parent 653f630 commit 84d9f3d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ private void printInstallationLogsSection(HtmlWriter writer, RequestParameters r
LinkedHashMap::new));

writer.openTable("previousLogs");
writer.tableHeader("Previous Logs", 5);
writer.tableHeader("Execution Logs", 5);

if (acToolExecutions.isEmpty()) {
writer.tr();
Expand Down Expand Up @@ -428,7 +428,7 @@ private void printInstallationLogsSection(HtmlWriter writer, RequestParameters r
writer.println("No log found for id " + reqParams.showLogId);
return;
} else {
String logLabel = "Previous Log " + reqParams.showLogId + ": " + getExecutionLabel(acToolExecution);
String logLabel = "Execution Log " + reqParams.showLogId + ": " + getExecutionLabel(acToolExecution);
String logHtml = acHistoryService.getLogFromHistory(reqParams.showLogId, true, reqParams.showLogVerbose, MAX_LINE_WIDTH);

writer.openTable("logTable");
Expand Down

0 comments on commit 84d9f3d

Please sign in to comment.