(t, s)
| 532 | console.log(t.join(this.logSeparator)); |
| 533 | } |
| 534 | logErr(t, s) { |
| 535 | const e = !this.isSurge() && !this.isQuanX() && !this.isLoon(); |
| 536 | e |
| 537 | ? this.log("", `\u2757\ufe0f${this.name}, \u9519\u8bef!`, t.stack) |
| 538 | : this.log("", `\u2757\ufe0f${this.name}, \u9519\u8bef!`, t); |
| 539 | } |
| 540 | wait(t) { |
| 541 | return new Promise((s) => setTimeout(s, t)); |
| 542 | } |