+ ${this.logs.map((log: any) => {
+ const icon = LOG_ICONS[log.type] || LOG_ICONS.log
+ return html`
+
+ ${log.timestamp
+ ? html`
+ ${this.#formatElapsedTime(log.timestamp)}
+
`
: nothing}
-
-
${log.args}
-
- `
- )}
+
${icon}
+
+ ${log.source === 'test'
+ ? html`>>>`
+ : nothing}
+ ${this.#formatArgs(log.args)}
+
+