diff --git a/lua/zapret-auto.lua b/lua/zapret-auto.lua index ac5a9d6..ad20727 100644 --- a/lua/zapret-auto.lua +++ b/lua/zapret-auto.lua @@ -206,7 +206,7 @@ function circular(ctx, desync) elseif not pos_check_range(dcopy, plan[i].range) then DLOG("circular: not calling '"..dcopy.func_instance.."' because pos "..pos_str(dcopy,plan[i].range.from).." "..pos_str(dcopy,plan[i].range.to).." is out of range '"..pos_range_str(plan[i].range).."'") else - DLOG("circular: executing '"..dcopy.func_instance.."'") + DLOG("circular: calling '"..dcopy.func_instance.."'") verdict = verdict_aggregate(verdict,_G[plan[i].func](nil, dcopy)) end end diff --git a/lua/zapret-lib.lua b/lua/zapret-lib.lua index 336e858..f9b87f0 100644 --- a/lua/zapret-lib.lua +++ b/lua/zapret-lib.lua @@ -151,7 +151,7 @@ function replay_execution_plan(desync, plan) DLOG("orchestrator: not calling '"..desync.func_instance.."' because pos "..pos_str(desync,plan[i].range.from).." "..pos_str(desync,plan[i].range.to).." is out of range '"..pos_range_str(plan[i].range).."'") else apply_execution_plan(desync, plan[i]) - DLOG("orchestrator: executing '"..desync.func_instance.."'") + DLOG("orchestrator: calling '"..desync.func_instance.."'") verdict = verdict_aggregate(verdict,_G[plan[i].func](nil, desync)) end end