Commit 4d353d2

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 d26297b
Changed files (2)
app
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);
       }
     }
   }
app/pubspec.yaml
@@ -48,7 +48,6 @@ dev_dependencies:
   sqflite_common_ffi: ^2.3.0
   translations_cleaner: ^0.0.5
   build_runner: ^2.4.9
-  dump: ^0.1.6
 
 flutter:
   uses-material-design: true