From 7d9ad0fce1342c08165ad06816d675820dec2889 Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Sun, 22 Mar 2020 00:55:00 -0400 Subject: [PATCH] removed debug logging --- backend/app.js | 1 - backend/config.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/backend/app.js b/backend/app.js index 5f3d9ed0..efe0de6a 100644 --- a/backend/app.js +++ b/backend/app.js @@ -131,7 +131,6 @@ async function startServer() { async function setPortItemFromENV() { return new Promise(resolve => { - console.log(backendPort.toString()); config_api.setConfigItem('ytdl_port', backendPort.toString()); setTimeout(() => resolve(true), 100); }); diff --git a/backend/config.js b/backend/config.js index 457c38b2..57f170f9 100644 --- a/backend/config.js +++ b/backend/config.js @@ -78,8 +78,6 @@ function setConfigItem(key, value) { } else { parent_object[element_name] = value; } - console.log('setting file to'); - console.log(config_json); success = setConfigFile(config_json); return success;