added debug check when error sending message

This commit is contained in:
mohammed jasem alaajel 2020-12-26 15:07:12 +04:00 committed by Govindas
parent b16ad58d16
commit 0783fd64d0
1 changed files with 3 additions and 1 deletions

View File

@ -223,7 +223,9 @@ public class RedisController extends BinaryJedisPubSub implements Runnable {
j.publish(channel.getBytes(StandardCharsets.UTF_8), message);
} catch (Exception e) {
System.out.println("Error sending redis message!");
e.printStackTrace();
if (debugMode) {
e.printStackTrace();
}
}
});