File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -116,11 +116,13 @@ class RoomContext extends ChangeNotifier with ChatContextMixin {
116116 notifyListeners ();
117117 })
118118 ..on < TrackPublishedEvent > ((event) {
119- Debug .event ('ParticipantContext: TrackPublishedEvent $roomName ' );
119+ Debug .event (
120+ 'RoomContext: TrackPublishedEvent $roomName participant = ${event .participant .identity } track = ${event .publication .sid }' );
120121 _buildParticipants ();
121122 })
122123 ..on < TrackUnpublishedEvent > ((event) {
123- Debug .event ('ParticipantContext: TrackUnpublishedEvent $roomName ' );
124+ Debug .event (
125+ 'RoomContext: TrackUnpublishedEvent $roomName participant = ${event .participant .identity } track = ${event .publication .sid }' );
124126 _buildParticipants ();
125127 })
126128 ..on < LocalTrackPublishedEvent > ((event) {
You can’t perform that action at this time.
0 commit comments