Skip to content

Commit

Permalink
replace trace with log
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Nov 22, 2024
1 parent 744cbf2 commit de57a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/redis.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Redis } from 'ioredis';
import config from '../config';
const { REDIS_URL } = config;
console.trace('[REDIS] connecting %s', REDIS_URL);
console.log('[REDIS] connecting %s', REDIS_URL);
export const redis = new Redis(REDIS_URL);
export default redis;

0 comments on commit de57a2a

Please sign in to comment.