fix(bklog):Convert debug echos into vbm()
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 11 Jul 2020 04:16:03 +0000 (04:16 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 11 Jul 2020 04:16:03 +0000 (04:16 +0000)
exec/bklog

index 173ece07d3078cad995ca24e49f2bc423732c252..6fc61e4325430d2fdbf7f2880cf7e7317187fede 100644 (file)
@@ -1240,9 +1240,9 @@ main() {
        while read -r -t "$bufferTTL" line && [[ $SECONDS -lt "$bufferTOD" ]]; do
            # Append line to buffer array
            buffer+=("$line");
        while read -r -t "$bufferTTL" line && [[ $SECONDS -lt "$bufferTOD" ]]; do
            # Append line to buffer array
            buffer+=("$line");
-           echo "DEBUG:Processing line:$lineCount";
-           echo "DEBUG:Current line   :$line";
-           echo "DEBUG:buf elem count :${#buffer[@]}";
+           vbm "DEBUG:Processing line:$lineCount";
+           vbm "DEBUG:Current line   :$line";
+           vbm "DEBUG:buf elem count :${#buffer[@]}";
            ((lineCount++));
        done;
        # Create dir_tmp if missing
            ((lineCount++));
        done;
        # Create dir_tmp if missing