removed debug logging

This commit is contained in:
Isaac Grynsztein
2020-03-22 00:55:00 -04:00
parent b3b2175c67
commit 7d9ad0fce1
2 changed files with 0 additions and 3 deletions

View File

@@ -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);
});

View File

@@ -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;