Use console.error for error message

This commit is contained in:
Patrick Jentsch 2021-02-01 10:00:05 +01:00
parent 37f98bb4ec
commit ee9fdd1017

View File

@ -22,7 +22,7 @@ class RessourceDisplay {
this.patch(payload); this.patch(payload);
break; break;
default: default:
console.log(`Unknown event type: ${eventType}`); console.error(`Unknown event type: ${eventType}`);
break; break;
} }
} }