Removed timestamps, they were more annoying than helpful, and we really don't care when it happened only that it happened.

This commit is contained in:
Storm Dragon
2025-10-11 14:53:11 -04:00
parent 75c8cac81d
commit 25f085d015

View File

@@ -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() {