From 5644dbca2fb12658574777eab68cacd9b42480ef Mon Sep 17 00:00:00 2001 From: Yves Peter Date: Mon, 8 Jul 2024 10:35:20 +0200 Subject: [PATCH] DeploymentBoundary.java: log log truncation as WARN --- .../mobiliar/business/deploy/boundary/DeploymentBoundary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/deploy/boundary/DeploymentBoundary.java b/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/deploy/boundary/DeploymentBoundary.java index 163f4ad0e..aad0819e3 100644 --- a/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/deploy/boundary/DeploymentBoundary.java +++ b/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/deploy/boundary/DeploymentBoundary.java @@ -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;