Skip to content

Commit

Permalink
Logging with JSON stringify was leading to crashes. Reverting, need t…
Browse files Browse the repository at this point in the history
…o investigate further
  • Loading branch information
antobinary committed May 24, 2020
1 parent 755d161 commit 4a38524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigbluebutton-html5/imports/startup/server/redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class RedisPubSub {
};

if (!meetingId || !userId) {
return Logger.warn(`Interrupted publishing of ${JSON.stringify(header)} due to missing data`);
Logger.warn(`Publishing ${eventName} with potentially missing data userId=${userId} meetingId=${meetingId}`);
}
const envelope = makeEnvelope(channel, eventName, header, payload, { meetingId, userId });

Expand Down

0 comments on commit 4a38524

Please sign in to comment.