We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c312302 commit d36c0aeCopy full SHA for d36c0ae
src/lib/Logger.ts
@@ -26,7 +26,9 @@ class Logger {
26
let log = chalk[this.level[type]](`[PicGo ${type.toUpperCase()}]: `)
27
log += msg
28
console.log(log)
29
- this.handleWriteLog(type, msg, this.ctx)
+ process.nextTick(() => {
30
+ this.handleWriteLog(type, msg, this.ctx)
31
+ })
32
return msg
33
} else {
34
return
0 commit comments