diff --git a/framework/logging/DbTarget.php b/framework/logging/DbTarget.php index 3a6da3a..e1de968 100644 --- a/framework/logging/DbTarget.php +++ b/framework/logging/DbTarget.php @@ -68,13 +68,13 @@ class DbTarget extends Target */ public function getDbConnection() { - if ($this->_db !== null) { - return $this->_db; - } - $this->_db = \Yii::$application->getComponent($this->connectionID); - if (!$this->_db instanceof \yii\db\dao\Connection) { - throw new \yii\base\Exception('DbTarget.connectionID must refer to a valid application component ID'); + if ($this->_db === null) { + $this->_db = \Yii::$application->getComponent($this->connectionID); + if (!$this->_db instanceof \yii\db\dao\Connection) { + throw new \yii\base\Exception('DbTarget.connectionID must refer to a valid application component ID'); + } } + return $this->_db; } /**