(log: string | RollupLog | (() => string | RollupLog))
| 892 | } |
| 893 | |
| 894 | override info(log: string | RollupLog | (() => string | RollupLog)): void { |
| 895 | const err = this._formatLog(typeof log === 'function' ? log() : log) |
| 896 | super.info(err) |
| 897 | } |
| 898 | |
| 899 | override warn( |
| 900 | log: string | RollupLog | (() => string | RollupLog), |
nothing calls this directly
no test coverage detected