Skip to content

Commit

Permalink
fix: terminal time log information display error (#891)
Browse files Browse the repository at this point in the history
  • Loading branch information
Otto authored Sep 22, 2021
1 parent ae19214 commit 1f12dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/content/lib/database.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
}

/**
Expand Down

0 comments on commit 1f12dd5

Please sign in to comment.