diff --git a/src/inc/cfg.mjs b/src/inc/cfg.mjs index 0dc4284..2de7ef8 100644 --- a/src/inc/cfg.mjs +++ b/src/inc/cfg.mjs @@ -38,7 +38,6 @@ const write = (kat, key, value, type, cb) => { if (type === "json") value = JSON.stringify(value); - console.log(kat, key, value, type); sql.any("select * from cfg where class = $1 && key = $2 limit 1", [kat, key]).then(rows => { if (rows.length > 0) { sql.any("update cfg set value = $1 where class = $2 && key = $3", [value, kat, key]).then(rows => {