Logger enhancements are arriving in this release. #1119 #1122 #1123 #1125
- You can customize the output by defining your own formatters for each log entry kind.
$.log.formatters = {
cmd: (entry: LogEntry) => `CMD: ${entry.cmd}`,
fetch: (entry: LogEntry) => `FETCH: ${entry.url}`
//...
}