From 0192d920f05f231018500abf637d9877d779d5b9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 26 Sep 2012 12:27:34 +0200 Subject: [PATCH] Sharing: write update errors to logfile; do not die on errors --- apps/files_sharing/appinfo/update.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 21f23c652d..2beeb6316b 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -50,13 +50,13 @@ if (version_compare($installedVersion, '0.3', '<')) { } catch (Exception $e) { $update_error = true; - echo 'Skipping sharing "'.$row['source'].'" to "'.$shareWith.'" (error is "'.$e->getMessage().'")
'; + OCP\Util::writeLog('files_sharing', 'Upgrade Routine: Skipping sharing "'.$row['source'].'" to "'.$shareWith.'" (error is "'.$e->getMessage().'")', OCP\Util::WARN); } OC_Util::tearDownFS(); } } if ($update_error) { - throw new Exception('There were some problems upgrading the sharing of files'); + OCP\Util::writeLog('files_sharing', 'There were some problems upgrading the sharing of files', OCP\Util::ERROR); } // NOTE: Let's drop the table after more testing // $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`');