Skip to content

Commit 7123751

Browse files
committed
trace messages fixes
1 parent d01e8c6 commit 7123751

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

operator/src/main/resources/scripts/monitorLog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ echo $$ > /tmp/monitorLog-pid
1616
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
1717
source ${SCRIPTPATH}/traceUtils.sh
1818

19-
trace "Monitoring server log file $1 with sleep interval of $2 seconds"
19+
trace "Monitoring server log file $1 every $2 seconds for selected known log messages."
2020

2121
while true; do
2222
if grep -q "BEA-141335" $1 ; then

operator/src/main/resources/scripts/startServer.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ function waitUntilShutdown() {
105105
FAIL_BOOT_ON_SITUATIONAL_CONFIG_ERROR=${FAIL_BOOT_ON_SITUATIONAL_CONFIG_ERROR:-true}
106106
SERVER_OUT_MONITOR_INTERVAL=${SERVER_OUT_MONITOR_INTERVAL:-30}
107107
if [ ${FAIL_BOOT_ON_SITUATIONAL_CONFIG_ERROR} == 'true' ] ; then
108-
trace "Monitor server out file ${SERVER_OUT_FILE} for certain known errors"
109108
${SCRIPTPATH}/monitorLog.sh ${SERVER_OUT_FILE} ${SERVER_OUT_MONITOR_INTERVAL} &
110109
fi
111110
waitForShutdownMarker

0 commit comments

Comments
 (0)