woonplan-packages-redishelper 1.0.57 → 1.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -53,6 +53,7 @@ var getMessagedataFromResult = function (results) {
53
53
  return { messagedata: messagedata, id: id };
54
54
  };
55
55
  var listenForMessageForDataRequest = function (listenerclient, groupname, channelname, consumername, callback) {
56
+ console.log("listening to ".concat(channelname, " as ").concat(consumername));
56
57
  var streammsgid = '';
57
58
  var messageid = '';
58
59
  // block client while listening for a message
package/index.ts CHANGED
@@ -69,7 +69,7 @@ const getMessagedataFromResult = ( results:any ) => {
69
69
  const listenForMessageForDataRequest = (
70
70
  listenerclient:Redis, groupname:string, channelname:string, consumername:string, callback:Function
71
71
  ) => {
72
-
72
+ console.log( `listening to ${channelname} as ${consumername}`)
73
73
  let streammsgid = '';
74
74
  let messageid = '';
75
75
  // block client while listening for a message
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "woonplan-packages-redishelper",
3
- "version": "1.0.57",
3
+ "version": "1.0.58",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",