create-db: print stacktrace on error
Build and test / build (push) Successful in 5m23s

This commit is contained in:
2026-06-09 10:45:07 +09:00
parent f0e919c397
commit ce45ae7cc8
+1
View File
@@ -44,6 +44,7 @@ class CreateDb extends Command {
})
.catchError((error) {
print('Error creating database: $error');
print(error.stackTrace);
failed = true;
})
.whenComplete(() {