From df144a5211ead7e20aa16c2ba0e14a4109729bce Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Wed, 22 Jul 2026 23:33:49 -0600 Subject: [PATCH] fix(logger): Remove errant 'fi' statements Remove 'fi' statements left over from previous logic checks. --- logger.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/logger.sh b/logger.sh index b1448a4..4fb1796 100644 --- a/logger.sh +++ b/logger.sh @@ -95,7 +95,6 @@ writeJsonLog() { --arg code "${5:999}" \ '{"timestamp":$timestamp, "hostname":$hostname, "programName":$pName, "pid":$pid, "level":$level, "status":$status, "message":$message, "operation":$operation, "code":$code}' \ )" - fi echo "$PROPS" | jq "." return @@ -119,7 +118,6 @@ MESSAGE="$1" OPERATION="${4:UNSPECIFIED}" ERRNO="${5:999}" end - fi return }