From 1da40c7eb188a2ec0c09856668ab9ec438152d7c Mon Sep 17 00:00:00 2001 From: Martinski4GitHub <119833648+Martinski4GitHub@users.noreply.github.com> Date: Fri, 6 Feb 2026 23:14:54 -0800 Subject: [PATCH] Minor Change Just a very minor change to make the logger tag consistent with other add-ons, which users find it easier to add to Scribe syslog-ng (if needed). --- MerlinAU.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MerlinAU.sh b/MerlinAU.sh index 87ee6dd..9fbe424 100644 --- a/MerlinAU.sh +++ b/MerlinAU.sh @@ -4,13 +4,13 @@ # # Original Creation Date: 2023-Oct-01 by @ExtremeFiretop. # Official Co-Author: @Martinski W. - Date: 2023-Nov-01 -# Last Modified: 2026-Jan-24 +# Last Modified: 2026-Feb-06 ################################################################### set -u ## Set version for each Production Release ## readonly SCRIPT_VERSION=1.5.9 -readonly SCRIPT_VERSTAG="26012404" +readonly SCRIPT_VERSTAG="26020622" readonly SCRIPT_NAME="MerlinAU" ## Set to "master" for Production Releases ## SCRIPT_BRANCH="dev" @@ -332,7 +332,7 @@ Say() logMsg="$(echo "$1" | \ sed 's/\\e\[[0-1]m//g; s/\\e\[[3-4][0-9]m//g; s/\\e\[[0-1];[3-4][0-9]m//g; s/\\e\[30;10[1-9]m//g; s/\\n/ /g')" _UserLogMsg_ "$logMsg" - printf "$logMsg" | logger -t "[${SCRIPT_NAME}] $$" + printf "$logMsg" | logger -t "${SCRIPT_NAME}_[$$]" } ##----------------------------------------------##