mirror of
https://github.com/friendica/friendica
synced 2024-12-31 23:22:19 +00:00
Use protected $this->logger instead
This commit is contained in:
parent
9ccb113530
commit
3b8d9a7248
1 changed files with 2 additions and 3 deletions
|
@ -21,7 +21,6 @@
|
||||||
|
|
||||||
namespace Friendica\Test\Util\Database;
|
namespace Friendica\Test\Util\Database;
|
||||||
|
|
||||||
use Friendica\Core\Logger;
|
|
||||||
use Friendica\Database\Database;
|
use Friendica\Database\Database;
|
||||||
use Friendica\Database\DatabaseException;
|
use Friendica\Database\DatabaseException;
|
||||||
use PDO;
|
use PDO;
|
||||||
|
@ -46,7 +45,7 @@ class StaticDatabase extends Database
|
||||||
/**
|
/**
|
||||||
* Override the behaviour of connect, due there is just one, static connection at all
|
* Override the behaviour of connect, due there is just one, static connection at all
|
||||||
*
|
*
|
||||||
* @return bool|void
|
* @return bool Success
|
||||||
*/
|
*/
|
||||||
public function connect(): bool
|
public function connect(): bool
|
||||||
{
|
{
|
||||||
|
@ -181,7 +180,7 @@ class StaticDatabase extends Database
|
||||||
self::$staticConnection->setAttribute(PDO::ATTR_AUTOCOMMIT,0);
|
self::$staticConnection->setAttribute(PDO::ATTR_AUTOCOMMIT,0);
|
||||||
} catch (PDOException $e) {
|
} catch (PDOException $e) {
|
||||||
// Log exception
|
// Log exception
|
||||||
Logger::error('Cannot establish database connection', ['exception' => $e, 'host' => $server, 'dbname' => $db]);
|
$this->logger::error('Cannot establish database connection', ['exception' => $e, 'host' => $server, 'dbname' => $db]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue