yiisoft/log-target-db
最新稳定版本:1.1.0
Composer 安装命令:
composer require yiisoft/log-target-db
包简介
Yii Logging Library - DB Target
关键字:
README 文档
README
Yii Logging Library - DB Target
This package provides the Database target for the yiisoft/log library.
Supported databases
| Packages | PHP | Versions | CI-Actions |
|---|---|---|---|
| [db-mssql] | 8.1 - 8.3 | 2017 - 2025 | |
| [db-mysql] (MySQL) | 8.1 - 8.3 | 5.7 - 9.5 | |
| [db-mysql] (MariaDB) | 8.1 - 8.3 | 10.4 - 12.10 | |
| [db-oracle] | 8.1 - 8.3 | 11C - 21C | |
| [db-pgsql] | 8.1 - 8.3 | 9.0 - 18.0 | |
| [db-sqlite] | 8.1 - 8.3 | 3:latest |
Requirements
- PHP 8.1 or higher.
PDOPHP extension.
Installation
The package could be installed with Composer:
composer require yiisoft/log-target-db
Create database connection
For more information see yiisoft/db.
Database Preparing
Package provides two way for preparing database:
-
Raw SQL. You can use it with the migration package used in your application.
-
Ensure tables:
-
Ensure no tables:
-
-
DbSchemaManagerforensureTable(),ensureNoTable()methods for log table (by default{{%yii_log}}).
// Create db schema manager $dbSchemaManager = new DbSchemaManager($db); // Ensure table with default name $dbSchemaManager->ensureTable(); // Ensure table with custom name $dbSchemaManager->ensureTable('{{%custom_log_table}}'); // Ensure no table with default name $dbSchemaManager->ensureNoTable(); // Ensure no table with custom name $dbSchemaManager->ensureNoTable('{{%custom_log_table}}');
General usage
When creating an instance of \Yiisoft\Log\Logger, you must pass an instance of the database connection.
Creating a target:
$dbTarget = new \Yiisoft\Log\Target\Db\DbTarget($db, $table, $levels);
$db (\Yiisoft\Db\Connection\ConnectionInterface)- The database connection instance.$table (string)- The name of the database table to store the log messages. Defaults to "{{%yii_log}}".$levels (array)- Optional. The log message levels that this target is interested in. Defaults to empty array (all levels). Example:[\Psr\Log\LogLevel::ERROR, \Psr\Log\LogLevel::WARNING].
Creating a logger:
$logger = new \Yiisoft\Log\Logger([$dbTarget]);
You can filter which log levels are stored in the database by passing the $levels parameter to the constructor:
use Psr\Log\LogLevel; // Only store ERROR and WARNING level messages $dbTarget = new \Yiisoft\Log\Target\Db\DbTarget( $db, '{{%yii_log}}', [LogLevel::ERROR, LogLevel::WARNING] );
Alternatively, you can set levels after instantiation using the setLevels() method:
$dbTarget = new \Yiisoft\Log\Target\Db\DbTarget($db); $dbTarget->setLevels([LogLevel::ERROR, LogLevel::WARNING]);
You can use multiple databases to store log messages:
/** * @var \Yiisoft\Db\Connection\ConnectionInterface $mysqlDb * @var \Yiisoft\Db\Connection\ConnectionInterface $sqliteDb */ $logger = new \Yiisoft\Log\Logger([ new \Yiisoft\Log\Target\Db\DbTarget($mysqlDb), new \Yiisoft\Log\Target\Db\DbTarget($sqliteDb), ]);
Documentation
For a description of using the logger, see the yiisoft/log package.
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
License
The Yii Logging Library - DB Target is free software. It is released under the terms of the BSD License.
Please see LICENSE for more information.
Maintained by Yii Software.
Support the project
Follow updates
统计信息
- 总下载量: 165
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 13
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2019-04-14