From bbd948000064431fcdb9921a1472de5d054caf52 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Mon, 7 Mar 2022 19:25:25 +0100 Subject: [PATCH] chore(back): clean leftover console.log --- src/components/RedisComponent.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/RedisComponent.ts b/src/components/RedisComponent.ts index 99c5280..0a69133 100644 --- a/src/components/RedisComponent.ts +++ b/src/components/RedisComponent.ts @@ -14,7 +14,6 @@ export default class RedisComponent extends ApplicationComponent implements Cach public async start(_app: Express): Promise { const redisUrl = `redis://${config.get('redis.host')}:${config.get('redis.port')}`; - console.log(redisUrl); this.redisClient = createClient({ url: redisUrl, password: config.has('redis.password') ? config.get('redis.password') : undefined,