Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
Logging was misleading and the date/times logged to file were always the time that the app was initialized, instead of the time of the actual log entry. Issue was noted in #334.
  • Loading branch information
mindset-tk authored Nov 25, 2024
1 parent fe6fa62 commit 8c3a8f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/winapps
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ readonly CONTAINER_NAME="WinApps" # FOR 'docker' AND 'podman' ONLY
readonly RDP_PORT=3389
readonly DOCKER_IP="127.0.0.1"
# shellcheck disable=SC2155 # Silence warnings regarding masking return values through simultaneous declaration and assignment.
readonly RUN="$(date)-${RANDOM}"
readonly RUNID="${RANDOM}" #Set a random int for the run ID to assist with logging

### GLOBAL VARIABLES ###
# WINAPPS CONFIGURATION FILE
Expand Down Expand Up @@ -162,7 +162,7 @@ Please run:
# Name: 'dprint'
# Role: Conditionally print debug messages to a log file, creating it if it does not exist.
function dprint() {
[ "$DEBUG" = "true" ] && echo "[$RUN] $1" >>"$LOG_PATH"
[ "$DEBUG" = "true" ] && echo "[$(date)-$RUNID] $1" >>"$LOG_PATH"
}

# Name: 'waFixScale'
Expand Down

0 comments on commit 8c3a8f8

Please sign in to comment.