kodansha/wack-log
最新稳定版本:v0.1.2
Composer 安装命令:
composer require kodansha/wack-log
包简介
Simple logger plugin to output logs to stdout.
关键字:
README 文档
README
WACK Log is a simple WordPress plugin to output logs to the stdout.
It is created as a thin Monolog wrapper with the intention of being used with the WACK Stack, but it can also be used with other WordPress installations, especially convenient for those that are containerized.
Installation
- Requires PHP 8.1 or later
- Requires WordPress 6.0 or later
- Requires Composer
Using Composer
composer require kodansha/wack-log
Note
This plugin is not available on the WordPress.org plugin repository. For the moment, the only way to install it is to use Composer.
Usage
WACK Log exposes a global function logger() that can be used as below:
logger()->debug('This is debug message.'); logger()->info('This is information message.'); logger()->warning('This is warning message.'); logger()->error('This is error message.');
In addition, it also provides a shorthand usage that is convenient for debugging:
logger('This is debug message.');
Configuration
There are two methods for customizing the behavior of WACK Log:
- Setting through the
WACK_LOG_SETTINGSconstant - Setting via the settings screen in the WordPress admin menu
Setting via WACK_LOG_SETTINGS
Define WACK_LOG_SETTINGS in functions.php or similar:
define('WACK_LOG_SETTINGS', [ 'use_json_format' => true, ]);
Setting via WordPress admin menu
Go to the settings screen of WACK Log in the WordPress admin menu and follow the instructions on the screen.
Note
If settings exist both in WACK_LOG_SETTINGS and the admin menu settings
at the same time, the settings defined in the constant are prioritized as
a general rule.
统计信息
- 总下载量: 237
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2024-01-20