From 66501bc6483f0b813030c5c9669ec08f2e64bed4 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Tue, 29 Nov 2022 17:14:47 +0100 Subject: [PATCH] MAINT: Remove debugging output --- src/core/js/ext_prop_display.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/js/ext_prop_display.js b/src/core/js/ext_prop_display.js index 68fbb52c..0e362060 100644 --- a/src/core/js/ext_prop_display.js +++ b/src/core/js/ext_prop_display.js @@ -39,7 +39,6 @@ var prop_display = new function ($, getEntityName, getPropertyElements, getPrope try { resource = resource || "ext_prop_display.json"; conf = await load_config(resource); - console.log(`Successfully loaded config: ${JSON.stringify(conf, undefined, 2)}`); } catch (err) { logger.error(err); } @@ -141,7 +140,6 @@ var prop_display = new function ($, getEntityName, getPropertyElements, getPrope } this.init = async function () { - console.log("initializing ext_prop_display.js"); const conf = await this.load_config(); if (("${BUILD_MODULE_EXT_PROPERTY_DISPLAY}" == "ENABLED") && Object.keys(conf).length > 0) { // There are properties to be hidden, so make this clear in HTML body -- GitLab