(...logs)
| 1041 | } |
| 1042 | |
| 1043 | log(...logs) { |
| 1044 | if (logs.length > 0) { |
| 1045 | this.logs = [...this.logs, ...logs] |
| 1046 | } |
| 1047 | console.log(logs.join(this.logSeparator)) |
| 1048 | } |
| 1049 | |
| 1050 | logErr(err, msg) { |
| 1051 | const isPrintSack = !this.isSurge() && !this.isQuanX() && !this.isLoon() |
no outgoing calls
no test coverage detected