From 75e19b89ee29d00698897517834114122f1a374c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E5=A4=A9?= Date: Fri, 20 May 2022 18:23:27 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=87=20fix=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/commons/core/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/commons/core/runner.go b/cmd/commons/core/runner.go index 547dd08..ebc559a 100644 --- a/cmd/commons/core/runner.go +++ b/cmd/commons/core/runner.go @@ -105,7 +105,7 @@ func (r *Runner) Run() { for t := 0; t < k; t++ { j := i task := func() { - log.Debugf("Running Submit %d url is %s %d", t, urls[j], j) + log.Debugf("Running Submit threads %d url is %s %d", t, urls[j], j) Start2(urls[j], hashmap) // Start k goroutines wg.Done() }