From 3b2aaccf1be0eb6ade5c9d73b1276c6951d677c3 Mon Sep 17 00:00:00 2001 From: si458 Date: Mon, 26 May 2025 14:15:48 +0100 Subject: [PATCH] remove console.log doh! #6634 Signed-off-by: si458 --- common.js | 1 - 1 file changed, 1 deletion(-) 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); }