mirror of
https://github.com/immich-app/immich.git
synced 2025-06-20 22:11:01 -04:00
9 lines
182 B
Dart
9 lines
182 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:logging/logging.dart';
|
|
|
|
mixin LogContext {
|
|
@protected
|
|
@nonVirtual
|
|
Logger get log => Logger(runtimeType.toString());
|
|
}
|