Skip to content

Commit

Permalink
Comment out sentry logging on redis
Browse files Browse the repository at this point in the history
  • Loading branch information
rocktimsaikia committed Dec 25, 2024
1 parent ee0b6fb commit d174f94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/src/libs/redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ redisClient.on("error", (err) => {
// only on production server but not locally.
// For now, just capture it in Sentry just to
// keep the server logs less verbose and messy.
Sentry.captureException(err);
// Sentry.captureException(err);
console.log("Redis Error: Socket closed unexpectedly");
} else {
console.log("Redis Error", err);
}
Expand Down

0 comments on commit d174f94

Please sign in to comment.