From 94e4226f40fe034c650786004597f981f24bccb2 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 15 Jul 2022 12:03:38 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E8=B5=84=E6=BA=90=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E9=87=8D=E5=91=BD=E5=90=8D=20https://github.com/siyua?= =?UTF-8?q?n-note/siyuan/issues/3454?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/cache/asset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/cache/asset.go b/kernel/cache/asset.go index c958561b5..13d5ebc55 100644 --- a/kernel/cache/asset.go +++ b/kernel/cache/asset.go @@ -60,6 +60,6 @@ func LoadAssets() { }) elapsed := time.Since(start) if 2000 < elapsed.Milliseconds() { - util.LogInfof("loaded assets [%s]", elapsed) + util.LogInfof("loaded assets [%.2fs]", elapsed.Seconds()) } }