feat(og): add reading time to default, improve logging

This commit is contained in:
Jacky Zhao
2025-03-13 10:41:50 -07:00
parent d9159e0ac9
commit 80c3196fee
4 changed files with 29 additions and 6 deletions

View File

@ -22,7 +22,7 @@ export class QuartzLogger {
readline.cursorTo(process.stdout, 0)
process.stdout.write(`${this.spinnerChars[this.spinnerIndex]} ${this.spinnerText}`)
this.spinnerIndex = (this.spinnerIndex + 1) % this.spinnerChars.length
}, 100)
}, 20)
}
}