maxvaluesoftware/logger
Composer 安装命令:
composer require maxvaluesoftware/logger
包简介
MVS Logger package for PhalconPHP
README 文档
README
Phalcon 4.* Logger extension and adapters. PSR-3 compliant.
Requirements
Requires PHP 7.2+ and Phalcon 4.0+
Features
- Adds EmailAdapter for Phalcon Logger to send erros via email using sendmail or SMTP
- Adds DbAdapter for Phalcon Logger to log errors to database
- Both the DbAdapter and the EmailAdapter accept a CONFIG_MIN_LOG_LEVEL config to specify the minimum log level to log to the adapter.
- Add static method logging instead of requiring the Phalcon Logger to be injected
Installation
composer require maxvaluesoftware\logger "^4.0
Usage
EmailAdapter
The email adapter can accept two mailers; either the default sendmail or
SMTP. Each has their own configurations. The mailer configs are public
constants named CONFIG_
SendmailMailer
Configs:
SendmailMailer::CONFIG_RECIPIENT => 'recipient@gmail.com',
SendmailMailer::CONFIG_SENDER_EMAIL => 'sender@gmail.com',
SendmailMailer::CONFIG_SENDER_NAME => 'Sender Name',
SendmailMailer::CONFIG_HEADERS => ['X-Mailer' => PHP_VERSION], // Array of optional headers
Example:
$options = [];
$adapters[] = new EmailAdapter($configs);
$logger = (new Logger\LoggerFactory(new
Logger\AdapterFactory()))->newInstance('logger', $adapters);
SmtpMailer
Configs:
SmtpMailer::CONFIG_RECIPIENT => ['recipient1@gmail.com', 'recipient2@gmail.com'],
SmtpMailer::CONFIG_SMTP_HOST => 'smtp.gmail.com',
SmtpMailer::CONFIG_SMTP_PORT => 587,
SmtpMailer::CONFIG_SMTP_USER => 'smtp username/email',
SmtpMailer::CONFIG_SMTP_PASS => 'smtp password,
SmtpMailer::CONFIG_SENDER_EMAIL => 'sender@gmail.com',
SmtpMailer::CONFIG_SENDER_NAME => 'Sender Name',
SmtpMailer::CONFIG_SMTP_ENCRYPTION => 'tls', // tls, ssl or null
$options = [];
$adapters[] = new EmailAdapter($configs);
$logger = (new Logger\LoggerFactory(new
Logger\AdapterFactory()))->newInstance('logger', $adapters);
DbAdapter
The database adapter allows logging to a configured Phalcon database
table.
Configs:
DbAdapter::CONFIG_TABLE_NAME => 'logs',
DbAdapter::CONFIG_COLUMN_ERROR_LEVEL => 'error_level',
DbAdapter::CONFIG_COLUMN_MESSAGE => 'error_msg',
DbAdapter::CONFIG_COLUMN_NAME => 'name',
DbAdapter::CONFIG_COLUMN_TIMESTAMP => 'timesetamp',
DbAdapter::CONFIG_DATE_FORMAT => 'Y-m-d H:i:s',
DbAdapter::CONFIG_MIN_LOG_LEVEL => Logger::ERROR,
Example: `$adapters[] = new DbAdapter($config); $logger = (new Logger\LoggerFactory(new Logger\AdapterFactory()))
->newInstance('test-logger', $adapters)`
Static Method Logging
Examples:
\Mvs\Logger\Phalcon\Logger::critical('Critical message with {variable}', ['variable' => 'inserted value']);
\Mvs\Logger\Phalcon\Logger::debug('Debug log message with no variables');
Unit Testing
Requires editing the tests/config.php file prior to running.
maxvaluesoftware/logger 适用场景与选型建议
maxvaluesoftware/logger 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 06 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 maxvaluesoftware/logger 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 maxvaluesoftware/logger 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-06-04