Commit 31a56b59 by Carsten Brandt

Avoid endless loop when exporting logs

fixes #4470
parent 935e2f5c
...@@ -105,7 +105,12 @@ abstract class Target extends Component ...@@ -105,7 +105,12 @@ abstract class Target extends Component
if (($context = $this->getContextMessage()) !== '') { if (($context = $this->getContextMessage()) !== '') {
$this->messages[] = [$context, Logger::LEVEL_INFO, 'application', YII_BEGIN_TIME]; $this->messages[] = [$context, Logger::LEVEL_INFO, 'application', YII_BEGIN_TIME];
} }
// set exportInterval to 0 to avoid triggering export again while exporting
$oldExportInterval = $this->exportInterval;
$this->exportInterval = 0;
$this->export(); $this->export();
$this->exportInterval = $oldExportInterval;
$this->messages = []; $this->messages = [];
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment