From 1f12dd59bc0055ec0eb4b333edde0dd4433780ef Mon Sep 17 00:00:00 2001 From: Otto Date: Wed, 22 Sep 2021 22:36:49 +0800 Subject: [PATCH] fix: terminal time log information display error (#891) --- packages/content/lib/database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/content/lib/database.js b/packages/content/lib/database.js index d0f955248..269feb499 100644 --- a/packages/content/lib/database.js +++ b/packages/content/lib/database.js @@ -68,7 +68,7 @@ class Database extends Hookable { const startTime = process.hrtime() await this.walk(this.dir) const [s, ns] = process.hrtime(startTime) - logger.info(`Parsed ${this.items.count()} files in ${s},${Math.round(ns / 1e8)} seconds`) + logger.info(`Parsed ${this.items.count()} files in ${s}.${Math.round(ns / 1e8)} seconds`) } /**