diff --git a/lib/widgets/collection/entry_set_action_delegate.dart b/lib/widgets/collection/entry_set_action_delegate.dart index 9425d6d67..72fe2cf4a 100644 --- a/lib/widgets/collection/entry_set_action_delegate.dart +++ b/lib/widgets/collection/entry_set_action_delegate.dart @@ -169,7 +169,7 @@ class EntrySetActionDelegate with FeedbackMixin, PermissionAwareMixin, SizeAware } void onActionSelected(BuildContext context, EntrySetAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { // general case EntrySetAction.configureView: diff --git a/lib/widgets/explorer/explorer_action_delegate.dart b/lib/widgets/explorer/explorer_action_delegate.dart index 3942ac2dd..f97a8438f 100644 --- a/lib/widgets/explorer/explorer_action_delegate.dart +++ b/lib/widgets/explorer/explorer_action_delegate.dart @@ -49,7 +49,7 @@ class ExplorerActionDelegate with FeedbackMixin { } void onActionSelected(BuildContext context, ExplorerAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { case ExplorerAction.addShortcut: _addShortcut(context); diff --git a/lib/widgets/filter_grids/common/action_delegates/album_set.dart b/lib/widgets/filter_grids/common/action_delegates/album_set.dart index 9e7c02b01..aff3e0599 100644 --- a/lib/widgets/filter_grids/common/action_delegates/album_set.dart +++ b/lib/widgets/filter_grids/common/action_delegates/album_set.dart @@ -139,7 +139,7 @@ class AlbumChipSetActionDelegate extends ChipSetActionDelegate with @override void onActionSelected(BuildContext context, ChipSetAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { // general case ChipSetAction.createAlbum: diff --git a/lib/widgets/filter_grids/common/action_delegates/chip.dart b/lib/widgets/filter_grids/common/action_delegates/chip.dart index c0d8c4797..86b23b105 100644 --- a/lib/widgets/filter_grids/common/action_delegates/chip.dart +++ b/lib/widgets/filter_grids/common/action_delegates/chip.dart @@ -42,7 +42,7 @@ class ChipActionDelegate with FeedbackMixin, VaultAwareMixin { } void onActionSelected(BuildContext context, CollectionFilter filter, ChipAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { case ChipAction.goToAlbumPage: _goTo(context, filter, AlbumListPage.routeName, (context) => const AlbumListPage()); diff --git a/lib/widgets/filter_grids/common/action_delegates/chip_set.dart b/lib/widgets/filter_grids/common/action_delegates/chip_set.dart index 4fa0702a4..4d6bc1806 100644 --- a/lib/widgets/filter_grids/common/action_delegates/chip_set.dart +++ b/lib/widgets/filter_grids/common/action_delegates/chip_set.dart @@ -164,7 +164,7 @@ abstract class ChipSetActionDelegate with FeedbackMi } void onActionSelected(BuildContext context, ChipSetAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { // general case ChipSetAction.configureView: diff --git a/lib/widgets/filter_grids/common/action_delegates/country_set.dart b/lib/widgets/filter_grids/common/action_delegates/country_set.dart index afb026c70..418fe1640 100644 --- a/lib/widgets/filter_grids/common/action_delegates/country_set.dart +++ b/lib/widgets/filter_grids/common/action_delegates/country_set.dart @@ -80,7 +80,7 @@ class CountryChipSetActionDelegate extends ChipSetActionDelegate @override void onActionSelected(BuildContext context, ChipSetAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { // single/multiple filters case ChipSetAction.showCountryStates: diff --git a/lib/widgets/filter_grids/common/action_delegates/tag_set.dart b/lib/widgets/filter_grids/common/action_delegates/tag_set.dart index 004c2f44c..251c855a4 100644 --- a/lib/widgets/filter_grids/common/action_delegates/tag_set.dart +++ b/lib/widgets/filter_grids/common/action_delegates/tag_set.dart @@ -65,7 +65,7 @@ class TagChipSetActionDelegate extends ChipSetActionDelegate { @override void onActionSelected(BuildContext context, ChipSetAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); switch (action) { // single/multiple filters case ChipSetAction.delete: diff --git a/lib/widgets/viewer/action/entry_action_delegate.dart b/lib/widgets/viewer/action/entry_action_delegate.dart index 98b3551b1..e59c7c90c 100644 --- a/lib/widgets/viewer/action/entry_action_delegate.dart +++ b/lib/widgets/viewer/action/entry_action_delegate.dart @@ -186,7 +186,7 @@ class EntryActionDelegate with FeedbackMixin, PermissionAwareMixin, SizeAwareMix } void onActionSelected(BuildContext context, EntryAction action) { - reportService.log('$action'); + reportService.log('$runtimeType handles $action'); final targetEntry = _getTargetEntry(context, action); switch (action) { diff --git a/lib/widgets/viewer/action/entry_info_action_delegate.dart b/lib/widgets/viewer/action/entry_info_action_delegate.dart index 41795c046..02146ba4c 100644 --- a/lib/widgets/viewer/action/entry_info_action_delegate.dart +++ b/lib/widgets/viewer/action/entry_info_action_delegate.dart @@ -92,7 +92,7 @@ class EntryInfoActionDelegate with FeedbackMixin, PermissionAwareMixin, EntryEdi } Future onActionSelected(BuildContext context, AvesEntry targetEntry, CollectionLens? collection, EntryAction action) async { - await reportService.log('$action'); + await reportService.log('$runtimeType handles $action'); _eventStreamController.add(ActionStartedEvent(action)); switch (action) { // general