diff options
| author | Mica White <botahamec@outlook.com> | 2026-01-24 13:14:55 -0500 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-01-24 13:14:55 -0500 |
| commit | 328abfd5d31aa73a732eef6885ac0e26819c7d17 (patch) | |
| tree | 96642f65de0a08250d1abe532319a21ceb39806d /lib/home.dart | |
| parent | 227bce2edeb4fa20eb8a9eba36063f7e2e30bb9f (diff) | |
Diffstat (limited to 'lib/home.dart')
| -rw-r--r-- | lib/home.dart | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/home.dart b/lib/home.dart index b9dce40..2e04d25 100644 --- a/lib/home.dart +++ b/lib/home.dart @@ -48,8 +48,9 @@ class _HomePageState extends State<HomePage> { }); } }); - _positionStream?.onError((error) { + _positionStream?.onError((error, stack) { _positionStream?.cancel(); + logObservable.value = logObservable.value..add('$error\n$stack'); Timer(Duration(seconds: 1), () => _initPositionStream(locationAccuracy)); }); } |
