From b2ac3fb5f39a01e913a67f074adb1c7d91772aec Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 9 Dec 2021 16:37:41 +0100 Subject: [PATCH] add better logging --- src/Appwrite/Migration/Version/V11.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Migration/Version/V11.php b/src/Appwrite/Migration/Version/V11.php index 6642e919b5..e7d1285072 100644 --- a/src/Appwrite/Migration/Version/V11.php +++ b/src/Appwrite/Migration/Version/V11.php @@ -181,7 +181,7 @@ class V11 extends Migration $sum = \count($all); - Console::log('Migrating Documents: ' . $offset . ' / ' . $this->oldProjectDB->getSum()); + Console::log('Migrating Internal Documents: ' . $offset . ' / ' . $this->oldProjectDB->getSum()); foreach ($all as $document) { if ( @@ -214,7 +214,7 @@ class V11 extends Migration $offset += $this->limit; $total += $sum; } - Console::log('Migrated ' . $total . ' Documents.'); + Console::log('Migrated ' . $total . ' Internal Documents.'); } /**