feat(debug): Удалить Talker (#2)

Co-authored-by: petrovyuri <y.petrov@friflex.com>
This commit is contained in:
Yuri Petrov
2025-02-04 10:18:41 +03:00
committed by GitHub
parent 40fc2209a4
commit 933c1a0f0f
17 changed files with 165 additions and 378 deletions

View File

@@ -15,8 +15,7 @@ import 'package:i_app_services/i_app_services.dart';
/// {@endtemplate}
final class DiContainer {
/// {@macro dependencies_container}
DiContainer({required this.env, required IDebugService dService})
: debugService = dService;
DiContainer({required this.env, required IDebugService dService}) : debugService = dService;
final AppEnv env;
/// Сервис для отладки, получаем из конструктора
@@ -84,8 +83,8 @@ final class DiContainer {
} on Object catch (error, stackTrace) {
onError(
'Ошибка инициализации ${IPathProvider.name}',
error: error,
stackTrace: stackTrace,
error,
stackTrace,
);
}
@@ -95,8 +94,8 @@ final class DiContainer {
} on Object catch (error, stackTrace) {
onError(
'Ошибка инициализации ${ISecureStorage.name}',
error: error,
stackTrace: stackTrace,
error,
stackTrace,
);
}
}