From 25f085d015a30aeb6d6b1f043262b95e3eeb7cb2 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 11 Oct 2025 14:53:11 -0400 Subject: [PATCH] Removed timestamps, they were more annoying than helpful, and we really don't care when it happened only that it happened. --- usr/local/bin/install_to_disk.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/usr/local/bin/install_to_disk.sh b/usr/local/bin/install_to_disk.sh index dade0a5..bfac585 100755 --- a/usr/local/bin/install_to_disk.sh +++ b/usr/local/bin/install_to_disk.sh @@ -12,15 +12,11 @@ mkdir -p "$LOGDIR" # Logging function log() { - local msg - msg="[$(date +%H:%M:%S)] $*" - echo "$msg" | tee -a "$LOGFILE" + echo "$*" | tee -a "$LOGFILE" } log_error() { - local msg - msg="[ERROR] $*" - echo "$msg" | tee -a "$LOGFILE" >&2 + echo "[ERROR] $*" | tee -a "$LOGFILE" >&2 } error_exit() {