mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
be a little more verbose in the exception message when we cant connect to the db
This commit is contained in:
parent
2a8c3798a8
commit
faa4918355
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
|
|||
return parent::connect();
|
||||
} catch (DBALException $e) {
|
||||
// throw a new exception to prevent leaking info from the stacktrace
|
||||
throw new DBALException($e->getMessage(), $e->getCode());
|
||||
throw new DBALException('Failed to connect to the database: ' . $e->getMessage(), $e->getCode());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue