From a936df314463c2128de77af582677d1d1c95a8c8 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Wed, 15 May 2024 12:13:50 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=B2=20Added=20a=20console.log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/redis.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/redis.config.ts b/config/redis.config.ts index 18dcd27..f5f89eb 100644 --- a/config/redis.config.ts +++ b/config/redis.config.ts @@ -1,5 +1,5 @@ import { createClient } from "redis"; - +console.log(`REDIS_URI: ${process.env.REDIS_URI}`); const redisURL = process.env.REDIS_URI; if (!redisURL) throw new Error("REDIS_URI environment variable is not set.");