yii\log\Dispatcher::setFlushInterval PHP Method

setFlushInterval() public method

public setFlushInterval ( integer $value )
$value integer how many messages should be logged before they are sent to targets. This method will set the value of [[Logger::flushInterval]]. Defaults to 1000, meaning the [[Logger::flush()]] method will be invoked once every 1000 messages logged. Set this property to be 0 if you don't want to flush messages until the application terminates. This property mainly affects how much memory will be taken by the logged messages. A smaller value means less memory, but will increase the execution time due to the overhead of [[Logger::flush()]].
    public function setFlushInterval($value)
    {
        $this->getLogger()->flushInterval = $value;
    }