Skip to content

Commit

Permalink
set some log levels to lower.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Oct 17, 2024
1 parent 5ff4feb commit 649c32e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/src/core/room.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class Room extends DisposableChangeNotifier with EventsEmittable<RoomEvent> {

// Any event emitted will trigger ChangeNotifier
events.listen((event) {
logger.fine('[RoomEvent] $event, will notifyListeners()');
logger.finer('[RoomEvent] $event, will notifyListeners()');
notifyListeners();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/src/participant/participant.dart
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ abstract class Participant<T extends TrackPublication>
}) : _name = name {
// Any event emitted will trigger ChangeNotifier
events.listen((event) {
logger.fine('[ParticipantEvent] $event, will notifyListeners()');
logger.finer('[ParticipantEvent] $event, will notifyListeners()');
notifyListeners();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/src/publication/remote.dart
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class RemoteTrackPublication<T extends RemoteTrack>
);

newValue.onVideoViewBuild = (_) {
logger.fine('[Visibility] VideoView did build');
logger.finer('[Visibility] VideoView did build');
if (_lastSentTrackSettings?.disabled == true) {
// quick enable
_cancelPendingTrackSettingsUpdateRequest?.call();
Expand Down
2 changes: 1 addition & 1 deletion lib/src/track/track.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ abstract class Track extends DisposableChangeNotifier
{this.receiver}) {
// Any event emitted will trigger ChangeNotifier
events.listen((event) {
logger.fine('[TrackEvent] $event, will notifyListeners()');
logger.finer('[TrackEvent] $event, will notifyListeners()');
notifyListeners();
});

Expand Down

0 comments on commit 649c32e

Please sign in to comment.