chore(back): clean leftover console.log

This commit is contained in:
Alice Gaudon 2022-03-07 19:25:25 +01:00
parent ecb2b13a83
commit bbd9480000
1 changed files with 0 additions and 1 deletions

View File

@ -14,7 +14,6 @@ export default class RedisComponent extends ApplicationComponent implements Cach
public async start(_app: Express): Promise<void> {
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<string>('redis.password') : undefined,