Skip to content

Commit e3b7af7

Browse files
committed
Better error logging
This exception catch block was silently ignoring error such as 'rate limited'.
1 parent 5725a04 commit e3b7af7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/flutterflow_cli.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 application: $e\n');
7576
exit(1);
7677
}
7778
}

0 commit comments

Comments
 (0)