mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Log exception when PostgreSQL version check failed
This commit is contained in:
parent
3cd09f2b09
commit
a25b86a30e
1 changed files with 3 additions and 1 deletions
|
|
@ -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'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue