Skip to content

Commit 328b8b5

Browse files
committed
Better error logging
1 parent 8445ccf commit 328b8b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/src/flutterflow_main.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ Future<void> appMain(List<String> args) async {
7171
break;
7272
default:
7373
}
74-
} catch (_) {
74+
} catch (e) {
75+
stderr.write('Error running the app: $e\n');
7576
exit(1);
7677
}
7778
}

0 commit comments

Comments
 (0)