Fix loop_count increment syntax for bash compatibility

This commit is contained in:
frankbria 2025-08-27 15:58:02 -07:00
parent 4961b9391c
commit 6bf8cd84f2

View file

@ -345,7 +345,7 @@ main() {
log_status "INFO" "DEBUG: About to enter while loop, loop_count=$loop_count"
while true; do
((loop_count++))
loop_count=$((loop_count + 1))
log_status "INFO" "DEBUG: Successfully incremented loop_count to $loop_count"
log_status "INFO" "Loop #$loop_count - calling init_call_tracking..."
init_call_tracking