Commit b245199e2be66fd8f758951ea2f108d9f3ddcd86

Authored by Adhidarma Hadiwinoto
1 parent 107838f10b
Exists in master

More log

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

lib/messages-archive.js
... ... @@ -25,6 +25,7 @@ function composeRedisCounterKeyword(origin, direction) {
25 25 }
26 26  
27 27 function incrementCounter(origin, direction) {
  28 + logger.warn('Undefined redisClient, not incrementing messages counter! #FF8E765E12E2');
28 29 redisClient && redisClient.INCR(composeRedisCounterKeyword(origin, direction), () => {});
29 30 }
30 31