From 279be9917dbf5415c36a03e07e4e70a43b4af673 Mon Sep 17 00:00:00 2001 From: dmiller Date: Tue, 4 Jan 2022 18:10:43 +0000 Subject: [PATCH] Simplify NSE timeout debug print --- nse_main.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nse_main.lua b/nse_main.lua index f084fd2f8..34d8b8d5c 100644 --- a/nse_main.lua +++ b/nse_main.lua @@ -1048,10 +1048,7 @@ local function run (threads_iter, hosts) for co, thread in pairs(waiting) do if thread:timed_out() then waiting[co], all[co], num_threads = nil, nil, num_threads-1; - thread:d("%THREAD %stimed out", thread.host - and format("%s%s ", thread.host.ip, - thread.port and ":"..thread.port.number or "") - or ""); + thread:d("%THREAD_AGAINST timed out") thread:close(timeouts, "timed out"); end end