From cc4603072c7f27b6b55fac7f983694639bbbd048 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Thu, 9 Jul 2020 19:46:20 +0000 Subject: [PATCH 1/1] chore(unitproc):bkFreqWrite:Update debug messages --- unitproc/bkFreqWrite | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/unitproc/bkFreqWrite b/unitproc/bkFreqWrite index 663c030..9cad3aa 100644 --- a/unitproc/bkFreqWrite +++ b/unitproc/bkFreqWrite @@ -1,7 +1,7 @@ #!/bin/bash -# Desc: Writes stdin to disk every 5 minutes +# Desc: Writes stdin to disk every 5 seconds -yell() { echo "[$(date --iso-8601=ns)]:$0: $*" >&2; } #o Yell, Die, Try Three-Fingered Claw technique +yell() { echo "$0: $*" >&2; } #o Yell, Die, Try Three-Fingered Claw technique die() { yell "$*"; exit 111; } #o Ref/Attrib: https://stackoverflow.com/a/25515370 try() { "$@" || die "cannot $*"; } #o @@ -24,9 +24,9 @@ while [[ $SECONDS -lt "scriptTTL" ]]; do while read -r line && [[ $SECONDS -lt "$bufferTOD" ]]; do # Append line to buffer buffer+=("$line"); - echo "Processing line:$lineCount"; - echo "Current line :$line"; - echo "buf elem count :${#buffer[@]}"; + echo "DEBUG:Processing line:$lineCount"; + echo "DEBUG:Current line :$line"; + echo "DEBUG:buf elem count :${#buffer[@]}"; ((lineCount++)); done; # Export buffer to asynchronous processing. -- 2.30.2