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); }