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