Skip to content
Snippets Groups Projects
Commit a25b86a3 authored by Vincent Petry's avatar Vincent Petry
Browse files

Log exception when PostgreSQL version check failed

parent 3cd09f2b
No related branches found
No related tags found
No related merge requests found
......@@ -516,8 +516,10 @@ class OC_Util {
}
}
catch (\Doctrine\DBAL\DBALException $e){
\OCP\Util::logException('core', $e);
$errors[] = array(
'error' => 'PostgreSQL >= 9 required'
'error' => 'Error occurred while checking PostgreSQL version',
'hint' => 'Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error'
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment