From ce45ae7cc874ed8f60cfeb30473be4168deebe4a Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 9 Jun 2026 10:45:07 +0900 Subject: [PATCH] create-db: print stacktrace on error --- lib/cli/commands/create_db.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cli/commands/create_db.dart b/lib/cli/commands/create_db.dart index fde9a2a..9440eb1 100644 --- a/lib/cli/commands/create_db.dart +++ b/lib/cli/commands/create_db.dart @@ -44,6 +44,7 @@ class CreateDb extends Command { }) .catchError((error) { print('Error creating database: $error'); + print(error.stackTrace); failed = true; }) .whenComplete(() {