DbLog::__construct

public DbLog::__construct(Connection $connection, LogMessageParserInterface $parser)

Constructs a DbLog object.

Parameters

\Drupal\Core\Database\Connection $connection: The database connection object.

\Drupal\Core\Logger\LogMessageParserInterface $parser: The parser to use when extracting message variables.

File

core/modules/dblog/src/Logger/DbLog.php, line 48

Class

DbLog
Logs events in the watchdog database table.

Namespace

Drupal\dblog\Logger

Code

public function __construct(Connection $connection, LogMessageParserInterface $parser) {
  $this->connection = $connection;
  $this->parser = $parser;
}
doc_Drupal
2016-10-29 09:01:13
Comments
Leave a Comment

Please login to continue.