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
1 2 3 4 | public function __construct(Connection $connection , LogMessageParserInterface $parser ) { $this ->connection = $connection ; $this ->parser = $parser ; } |
Please login to continue.