v2.0.5: Add typed service lookup entrypoint and tests for Arcane.service

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-06-03 19:37:14 +02:00
parent fe42eac0dc
commit cbb1a78473
7 changed files with 83 additions and 2 deletions
+3 -1
View File
@@ -24,7 +24,9 @@ Future<void> main() async {
final DebugPrint debugPrintInterface = DebugPrint();
final DebugAuthInterface debugAuthInterface = DebugAuthInterface();
LogEvent? skipDebugPrintWhenDisabled(
LogEvent event, LogInterceptorContext context) {
LogEvent event,
LogInterceptorContext context,
) {
if (context.interface is DebugPrint && Feature.logging.disabled) {
return null;
}