diff --git a/common.js b/common.js index d7b36c4c..ccddadd1 100644 --- a/common.js +++ b/common.js @@ -424,7 +424,6 @@ module.exports.uniqueArray = function (a) { // Replace placeholders in a string with values from an object or a function module.exports.replacePlaceholders = function (template, values) { return template.replace(/\{(\w+)\}/g, (match, key) => { - console.log('match', match, 'key', key, 'values', values); if (typeof values === 'function') { return values(key); }