Doctrine\MongoDB\Traits\LoggableCollectionTrait::log PHP Метод

log() публичный Метод

Log something using the configured logger callable.
См. также: Loggable::log()
public log ( array $log )
$log array
    public function log(array $log)
    {
        $log['db'] = $this->database->getName();
        $log['collection'] = $this->getName();
        call_user_func($this->loggerCallable, $log);
    }