From 649c32e7b4f427372fdb32ce2586432ccf8d7119 Mon Sep 17 00:00:00 2001 From: cloudwebrtc Date: Thu, 17 Oct 2024 22:56:30 +0800 Subject: [PATCH] set some log levels to lower. --- lib/src/core/room.dart | 2 +- lib/src/participant/participant.dart | 2 +- lib/src/publication/remote.dart | 2 +- lib/src/track/track.dart | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/src/core/room.dart b/lib/src/core/room.dart index 201e12c21..969785011 100644 --- a/lib/src/core/room.dart +++ b/lib/src/core/room.dart @@ -137,7 +137,7 @@ class Room extends DisposableChangeNotifier with EventsEmittable { // Any event emitted will trigger ChangeNotifier events.listen((event) { - logger.fine('[RoomEvent] $event, will notifyListeners()'); + logger.finer('[RoomEvent] $event, will notifyListeners()'); notifyListeners(); }); diff --git a/lib/src/participant/participant.dart b/lib/src/participant/participant.dart index 33e5501fa..96941419d 100644 --- a/lib/src/participant/participant.dart +++ b/lib/src/participant/participant.dart @@ -140,7 +140,7 @@ abstract class Participant }) : _name = name { // Any event emitted will trigger ChangeNotifier events.listen((event) { - logger.fine('[ParticipantEvent] $event, will notifyListeners()'); + logger.finer('[ParticipantEvent] $event, will notifyListeners()'); notifyListeners(); }); diff --git a/lib/src/publication/remote.dart b/lib/src/publication/remote.dart index dc20cd88e..bcb03d6c5 100644 --- a/lib/src/publication/remote.dart +++ b/lib/src/publication/remote.dart @@ -213,7 +213,7 @@ class RemoteTrackPublication ); newValue.onVideoViewBuild = (_) { - logger.fine('[Visibility] VideoView did build'); + logger.finer('[Visibility] VideoView did build'); if (_lastSentTrackSettings?.disabled == true) { // quick enable _cancelPendingTrackSettingsUpdateRequest?.call(); diff --git a/lib/src/track/track.dart b/lib/src/track/track.dart index bac22e2d6..ee4ca53ff 100644 --- a/lib/src/track/track.dart +++ b/lib/src/track/track.dart @@ -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(); });