From 72a78cd92940b3e926aeab9ad824300cdc220e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 21 Feb 2023 11:10:05 +0100 Subject: [PATCH] Webapp: remove some `console.log` calls No functional changes, except for a slightly less noisy JS debug console. --- web/app/src/components/jobs/JobActionsBar.vue | 1 - web/app/src/main.js | 1 - 2 files changed, 2 deletions(-) diff --git a/web/app/src/components/jobs/JobActionsBar.vue b/web/app/src/components/jobs/JobActionsBar.vue index 1823922d..19891ebf 100644 --- a/web/app/src/components/jobs/JobActionsBar.vue +++ b/web/app/src/components/jobs/JobActionsBar.vue @@ -98,7 +98,6 @@ export default { * @param { JobDeletionInfo } deleteInfo */ _showDeleteJobPopup(deleteInfo) { - console.log("deleteInfo", deleteInfo); this.deleteInfo = deleteInfo; }, diff --git a/web/app/src/main.js b/web/app/src/main.js index 35f1c13e..fc44fa08 100644 --- a/web/app/src/main.js +++ b/web/app/src/main.js @@ -25,7 +25,6 @@ autoreload(); const pinia = createPinia() function normalMode() { - console.log("Flamenco is starting in normal operation mode"); const app = createApp(App) app.use(pinia) app.use(router)