Skip to content

Commit 46598b7

Browse files
committed
refactor: update log file path in entrypoint-user.sh
The log file path in the entrypoint-user.sh script has been updated to use the LGSM_LOGDIR environment variable instead of the previous logdir variable. This change ensures that the correct log files are being tailed.
1 parent 428793e commit 46598b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint-user.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ sleep 5
6464
sleep 2
6565
echo -e "Tail log files"
6666
echo -e "================================="
67-
tail -F "${logdir}/*/*.log" &
67+
tail -F "${LGSM_LOGDIR}"/*/*.log &
6868
wait

0 commit comments

Comments
 (0)