Remove debug log from dashboard js

This commit is contained in:
Otto Winter 2019-10-19 16:17:12 +02:00
parent 869775ec7a
commit 292c2d0c53
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E

View File

@ -585,7 +585,6 @@ const startAceWebsocket = () => {
if (raw.event === "line") {
const msg = JSON.parse(raw.data);
if (msg.type === "result") {
console.log(msg);
const arr = [];
for (const v of msg.validation_errors) {
@ -755,8 +754,6 @@ jQuery.validator.addMethod("lowercase", (value, element) => {
return value === value.toLowerCase();
}, "Name must be lowercase.");
const updateAllModal = new LogModalElem({
name: 'update-all',
onPrepare: (modalElem, config) => {