(...t)
| 528 | this.logs = this.logs.concat(logs); |
| 529 | } |
| 530 | log(...t) { |
| 531 | t.length > 0 && (this.logs = [...this.logs, ...t]), |
| 532 | console.log(t.join(this.logSeparator)); |
| 533 | } |
| 534 | logErr(t, s) { |
| 535 | const e = !this.isSurge() && !this.isQuanX() && !this.isLoon(); |
| 536 | e |