diff --git a/packages/smooth_app/lib/main.dart b/packages/smooth_app/lib/main.dart index 313d82f75ee0..f290c86f0785 100644 --- a/packages/smooth_app/lib/main.dart +++ b/packages/smooth_app/lib/main.dart @@ -194,6 +194,11 @@ class _SmoothAppState extends State { future: _initFuture, builder: (BuildContext context, AsyncSnapshot snapshot) { if (snapshot.hasError) { + Logs.e( + 'The app initialisation failed', + ex: snapshot.error, + stacktrace: snapshot.stackTrace, + ); FlutterNativeSplash.remove(); return _buildError(snapshot); }