diff --git a/assets/components/LogEventSource.vue b/assets/components/LogEventSource.vue index e5c0df79..839fceeb 100644 --- a/assets/components/LogEventSource.vue +++ b/assets/components/LogEventSource.vue @@ -37,7 +37,7 @@ export default { this.flushBuffer(); this.flushBuffer.flush(); }); - this.es.addEventListener("error", (e) => console.log("EventSource failed: " + JSON.stringify(e))); + this.es.addEventListener("error", (e) => console.error("EventSource failed: " + JSON.stringify(e))); this.es.onmessage = (e) => { this.buffer.push(this.parseMessage(e.data)); this.flushBuffer();