Skip to content

Commit

Permalink
log: Log "meeting_id" instead of "meetingId" for easier matching. (#2043
Browse files Browse the repository at this point in the history
)
  • Loading branch information
bgrozev authored Aug 23, 2023
1 parent 8bb3315 commit 194c8f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jvb/src/main/java/org/jitsi/videobridge/Videobridge.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ void localEndpointExpired(boolean visitor)
{
final Conference conference = doCreateConference(name, meetingId, isRtcStatsEnabled);

logger.info(() -> "create_conf, id=" + conference.getID() + " meetingId=" + meetingId);
logger.info(() -> "create_conf, id=" + conference.getID() + " meeting_id=" + meetingId);

return conference;
}
Expand Down Expand Up @@ -485,7 +485,7 @@ private void handleColibriRequest(XmppConnection.ColibriRequest request)
{
if (conference == null)
{
logger.warn("Conference with meetingId=" + meetingId + " not found.");
logger.warn("Conference with meeting_id=" + meetingId + " not found.");
throw new ConferenceNotFoundException();
}
return conference;
Expand Down

0 comments on commit 194c8f7

Please sign in to comment.