Update logging

This commit is contained in:
problematicconsumer
2023-08-22 01:02:33 +03:30
parent f6d606a068
commit 03ae15010a
4 changed files with 26 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ import 'package:loggy/loggy.dart';
/// used in notifiers and controllers
mixin AppLogger implements LoggyType {
@override
Loggy<AppLogger> get loggy => Loggy<AppLogger>('🧮 $runtimeType');
Loggy<AppLogger> get loggy => Loggy<AppLogger>('$runtimeType');
}
/// presentation layer logger
@@ -13,7 +13,7 @@ mixin AppLogger implements LoggyType {
/// used in widgets and ui
mixin PresLogger implements LoggyType {
@override
Loggy<PresLogger> get loggy => Loggy<PresLogger>('🏰 $runtimeType');
Loggy<PresLogger> get loggy => Loggy<PresLogger>('$runtimeType');
}
/// data layer logger
@@ -21,7 +21,7 @@ mixin PresLogger implements LoggyType {
/// used in Repositories, DAOs, Services
mixin InfraLogger implements LoggyType {
@override
Loggy<InfraLogger> get loggy => Loggy<InfraLogger>('💾 $runtimeType');
Loggy<InfraLogger> get loggy => Loggy<InfraLogger>('$runtimeType');
}
abstract class LoggerMixin {