mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
Add File info
This commit is contained in:
parent
54ba59da64
commit
91a3ee0c9d
1 changed files with 3 additions and 1 deletions
|
|
@ -372,7 +372,9 @@ class Migrations extends Action
|
|||
$migration->setAttribute('status', 'completed');
|
||||
$migration->setAttribute('stage', 'finished');
|
||||
} catch (\Throwable $th) {
|
||||
Console::error($th->getMessage());
|
||||
Console::error('Message: ' . $th->getMessage());
|
||||
Console::error('File: ' . $th->getFile());
|
||||
Console::error('Line: ' . $th->getLine());
|
||||
Console::error($th->getTraceAsString());
|
||||
|
||||
if (! $migration->isEmpty()) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue