From d660a72d6ffec9bc2c89e47c51aaa2f0f7efbe69 Mon Sep 17 00:00:00 2001 From: iPromKnight Date: Sat, 3 Feb 2024 22:12:45 +0000 Subject: [PATCH] missed a couple of log lines for logger --- src/node/consumer/src/lib/cache.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/node/consumer/src/lib/cache.js b/src/node/consumer/src/lib/cache.js index b953f3c..f7d5b80 100644 --- a/src/node/consumer/src/lib/cache.js +++ b/src/node/consumer/src/lib/cache.js @@ -64,9 +64,9 @@ const cacheWrap = async (cacheType, key, method, options) => { return method(); } - console.debug(`Cache type: ${cacheType}`); - console.debug(`Cache key: ${key}`); - console.debug(`Cache options: ${JSON.stringify(options)}`); + logger.debug(`Cache type: ${cacheType}`); + logger.debug(`Cache key: ${key}`); + logger.debug(`Cache options: ${JSON.stringify(options)}`); return cache.wrap(key, method, options.ttl); }