Skip to content

Commit ea7f180

Browse files
committed
🔊 Improve generate facts script logging
1 parent db47401 commit ea7f180

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎packages/core/scripts/generate_facts.dart‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ void main() async {
3333
overrideOutputPath: p.join(dir.path, 'actual_data'),
3434
);
3535
await generator.build().catchError((e, s) {
36-
stderr.writeln('$e\n$s');
36+
stderr.writeln('[FAILED] ${file.name} - ${buildFile?.name ?? 'N/A'}');
37+
stderr.writeln('$e');
38+
stderr.writeln('$s');
3739
});
3840
}
3941
}

0 commit comments

Comments
 (0)