From 7dabcc95ca1e03cb072d6fc4772217625646de7a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 17 Oct 2021 17:16:26 +0100 Subject: [PATCH] fix(alert): game server log must be a .log file fixed #957 --- lgsm/functions/info_messages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 5947e34ee..14e2424da 100755 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -749,13 +749,13 @@ fn_info_logs(){ fi if [ -n "${gamelogdir}" ]; then - echo -e "\nServer log\n===================" + echo -e "\nGame Server log\n===================" if [ ! "$(ls -A "${gamelogdir}")" ]; then echo -e "${gamelogdir} (NO LOG FILES)" else echo -e "${gamelogdir}" # dos2unix sed 's/\r//' - tail "${gamelogdir}"/* 2>/dev/null | grep -v "==>" | sed '/^$/d' | sed 's/\r//' | tail -25 + tail "${gamelogdir}"/*.log* 2>/dev/null | grep -v "==>" | sed '/^$/d' | sed 's/\r//' | tail -25 fi fi }