mirror of
https://github.com/immich-app/immich.git
synced 2025-02-04 01:09:14 -05:00
8 lines
206 B
Dart
8 lines
206 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:immich_mobile/utils/log_manager.dart';
|
|
|
|
mixin LogMixin {
|
|
@protected
|
|
@nonVirtual
|
|
Logger get log => LogManager.I.get(runtimeType.toString());
|
|
}
|