From 96aefc3938620935faf952b9a0a084ced7a76946 Mon Sep 17 00:00:00 2001 From: fumiama Date: Mon, 27 Sep 2021 22:10:47 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20=E8=B0=83=E6=95=B4=20log?= =?UTF-8?q?=20=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin_reborn/load.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin_reborn/load.go b/plugin_reborn/load.go index 91c92794..ffe24193 100644 --- a/plugin_reborn/load.go +++ b/plugin_reborn/load.go @@ -47,7 +47,7 @@ func init() { if err != nil { panic(err) } - log.Printf("[Reborn] 读取%d个国家/地区", len(area)) + log.Printf("[Reborn]读取%d个国家/地区", len(area)) }() } @@ -75,7 +75,7 @@ func load(area *rate) error { if err == nil { defer resp.Body.Close() if resp.ContentLength > 0 { - log.Printf("[Reborn] 从镜像下载国家和地区%d字节...", resp.ContentLength) + log.Printf("[Reborn]从镜像下载国家和地区%d字节...", resp.ContentLength) data, err := io.ReadAll(resp.Body) if err == nil && len(data) > 0 { _, _ = f.Write(data)