Skip to content
Snippets Groups Projects
Commit 270babdc authored by Steve Reis's avatar Steve Reis
Browse files

clean: Remove debug log

parent 278be393
No related branches found
No related tags found
No related merge requests found
...@@ -100,8 +100,6 @@ export default class EngineService implements Connector { ...@@ -100,8 +100,6 @@ export default class EngineService implements Connector {
const cached = await this.cacheManager.get<T>(key); const cached = await this.cacheManager.get<T>(key);
if (cached) return cached; if (cached) return cached;
console.log(`Cache for ${key} not found. Calling function.`);
const result = await fn(); const result = await fn();
this.cacheManager.set(key, result, { ttl: this.cacheConf.ttl }); this.cacheManager.set(key, result, { ttl: this.cacheConf.ttl });
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment