(log: string | RollupLog | (() => string | RollupLog))
| 887 | } |
| 888 | |
| 889 | override debug(log: string | RollupLog | (() => string | RollupLog)): void { |
| 890 | const err = this._formatLog(typeof log === 'function' ? log() : log) |
| 891 | super.debug(err) |
| 892 | } |
| 893 | |
| 894 | override info(log: string | RollupLog | (() => string | RollupLog)): void { |
| 895 | const err = this._formatLog(typeof log === 'function' ? log() : log) |
nothing calls this directly
no test coverage detected