Sharing: write update errors to logfile; do not die on errors

This commit is contained in:
Arthur Schiwon 2012-09-26 12:27:34 +02:00
parent fcd70246db
commit 0192d920f0
1 changed files with 2 additions and 2 deletions

View File

@ -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().'")<br/>';
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`');