* Time aggregate end. * @param {string=} label label
(label)
| 229 | * @param {string=} label label |
| 230 | */ |
| 231 | timeAggregateEnd(label) { |
| 232 | if (this[TIMERS_AGGREGATES_SYMBOL] === undefined) return; |
| 233 | const time = this[TIMERS_AGGREGATES_SYMBOL].get(label); |
| 234 | if (time === undefined) return; |
| 235 | this[TIMERS_AGGREGATES_SYMBOL].delete(label); |
| 236 | this[LOG_SYMBOL](LogType.time, [label, ...time]); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | module.exports.Logger = WebpackLogger; |
no test coverage detected