(logLevel, table, columns)
| 58206 | return this._getLogFunction(logLevel, message, originalConsole.debug || originalConsole.info, arguments, ONCE); |
| 58207 | } |
| 58208 | table(logLevel, table, columns) { |
| 58209 | if (table) return this._getLogFunction(logLevel, table, console.table || noop, columns && [ |
| 58210 | columns |
| 58211 | ], { |
| 58212 | tag: getTableHeader(table) |
| 58213 | }); |
| 58214 | return noop; |
| 58215 | } |
| 58216 | image(_ref) { |
| 58217 | let { logLevel , priority , image , message ="" , scale =1 } = _ref; |
| 58218 | if (!this._shouldLog(logLevel || priority)) return noop; |
nothing calls this directly
no test coverage detected