Commit 3aff9b8

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2024-05-04 20:50:46
fix warnings introduced through logging
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent 6951e93
Changed files (1)
app
lib
bluetooth
app/lib/bluetooth/logging.dart
@@ -1,4 +1,3 @@
-import 'package:dump/dump.dart'; // only used in debug mode
 import 'package:flutter/foundation.dart';
 
 /// Simple class for manually logging in debug builds.
@@ -10,7 +9,7 @@ class Log {
       debugPrintStack();
       debugPrint('ERROR $message:');
       for (final e in dumps ?? []) {
-        dumpJson(e);
+        debugPrint(e);
       }
     }
   }