diff --git a/functions/logs.sh b/functions/logs.sh index a294c4d35..78c95fa97 100644 --- a/functions/logs.sh +++ b/functions/logs.sh @@ -16,6 +16,17 @@ if [ -n "${consolelog}" ]; then fi fi +# For games not displaying a console, and having logs into their game folder +if [ -n ${gamelogfile} ]; then + if [ -n $(find ${systemdir} -name gamelog*.log ) ]; then + fn_printinfo "Moving game logs to ${gamelogdir}" + fn_scriptlog "Moving game logs to ${gamelogdir}" + echo -en "\n" + sleep1 + mv "${systemdir}"/gamelog*.log "${gamelogdir}" + fi +fi + # Log manager will start the cleanup if it finds logs older than "${logdays}" if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; then fn_printdots "Starting"