TF-4136 refactor(logging): replace logError with logWarning for non-critical cases
This commit is contained in:
@@ -19,6 +19,6 @@ class BeforeReconnectManager {
|
||||
|
||||
Future<void> executeBeforeReconnectListeners() async {
|
||||
await Future.wait(_listeners.map((listener) => listener.call()))
|
||||
.onError((error, stackTrace) => [logError(error.toString())]);
|
||||
.onError((error, stackTrace) => [logWarning(error.toString())]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user