Skip to content

Commit

Permalink
DeploymentBoundary.java: log log truncation as WARN
Browse files Browse the repository at this point in the history
  • Loading branch information
yvespp authored Jul 8, 2024
1 parent cce68c2 commit 5f413ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ public String readContentOfDeploymentLog(String logFilename, long maxSize) throw

StringBuilder content = new StringBuilder();
if (startPosition > 0 ) {
content.append("[INFO] Log Truncation Notice: The beginning of this log has been truncated because the log file exceeded the maximum allowable size. Some earlier entries are missing.\n\n");
content.append("[WARN] Log Truncation Notice: The beginning of this log has been truncated because the log file exceeded the maximum allowable size. Some earlier entries are missing.\n\n");
content.append("\n...\n");
}
String line;
Expand Down

0 comments on commit 5f413ff

Please sign in to comment.