diff --git a/bigbluebutton-html5/imports/startup/server/redis.js b/bigbluebutton-html5/imports/startup/server/redis.js
index 1a2cec69747591bf404b47ea051616c433abd44e..0314b3ce6c8541174339a53275aabccf35288972 100644
--- a/bigbluebutton-html5/imports/startup/server/redis.js
+++ b/bigbluebutton-html5/imports/startup/server/redis.js
@@ -65,7 +65,7 @@ class MettingMessageQueue {
     };
 
     const onError = (reason) => {
-      this.debug(`${eventName}: ${reason}`);
+      this.debug(`${eventName}: ${reason.stack ? reason.stack : reason}`);
       callNext();
     };
 
diff --git a/bigbluebutton-html5/private/config/settings-development.json b/bigbluebutton-html5/private/config/settings-development.json
index aa28943454ccf1663252a415c7d985ca6b681f0c..756e857cfd831d51eb3ae3c581ad8db4d3683261 100644
--- a/bigbluebutton-html5/private/config/settings-development.json
+++ b/bigbluebutton-html5/private/config/settings-development.json
@@ -327,7 +327,7 @@
       "host": "127.0.0.1",
       "post": "6379",
       "timeout": 5000,
-      "debug": false,
+      "debug": true,
       "channels": {
         "toAkkaApps": "to-akka-apps-redis-channel"
       },
diff --git a/bigbluebutton-html5/private/config/settings-production.json b/bigbluebutton-html5/private/config/settings-production.json
index 95bb02f1264431c929fd1490576e9ab0aec6bfc3..6c89744003ad91d55a971244495c7fe70275b69b 100644
--- a/bigbluebutton-html5/private/config/settings-production.json
+++ b/bigbluebutton-html5/private/config/settings-production.json
@@ -327,7 +327,7 @@
       "host": "127.0.0.1",
       "post": "6379",
       "timeout": 5000,
-      "debug": false,
+      "debug": true,
       "channels": {
         "toAkkaApps": "to-akka-apps-redis-channel"
       },