(t, s)
| 454 | console.log(t.join(this.logSeparator)); |
| 455 | } |
| 456 | logErr(t, s) { |
| 457 | const e = !this.isSurge() && !this.isQuanX() && !this.isLoon(); |
| 458 | e |
| 459 | ? this.log("", `\u2757\ufe0f${this.name}, \u9519\u8bef!`, t.stack) |
| 460 | : this.log("", `\u2757\ufe0f${this.name}, \u9519\u8bef!`, t); |
| 461 | } |
| 462 | wait(t) { |
| 463 | return new Promise((s) => setTimeout(s, t)); |
| 464 | } |