We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04a2613 commit 0bfc3b5Copy full SHA for 0bfc3b5
src/infra/y-redis/helper.ts
@@ -29,8 +29,6 @@ export interface RoomStreamInfos {
29
30
export const decodeRedisRoomStreamName = (rediskey: string, expectedRedisPrefix: string): RoomStreamInfos => {
31
const match = new RegExp(`^${expectedRedisPrefix}:room:([^:]+):([^:]+)$`).exec(rediskey);
32
- console.log('match', match);
33
- console.log('expectedRedisPrefix', expectedRedisPrefix);
34
35
if (match == null) {
36
throw new Error(`Malformed stream name! expectedRedisPrefix="${expectedRedisPrefix}", rediskey="${rediskey}"`);
0 commit comments