#1261 Removed calls to console.log

This commit is contained in:
Knut Sveidqvist
2020-02-21 09:50:04 +01:00
parent 3acff54837
commit 89c1853977
4 changed files with 0 additions and 12 deletions

View File

@@ -10,7 +10,6 @@ const addSection = function(id, value) {
if (typeof sections[id] === 'undefined') {
sections[id] = value;
logger.debug('Added new section :', id);
// console.log('Added new section:', id, value)
}
};
const getSections = () => sections;