dndeus/module-logger

安装: 9

依赖: 0

建议: 0

安全: 0

星标: 1

关注者: 1

分支: 0

开放问题: 23

语言:CSS

类型:magento2-module

1.0.2 2020-06-07 22:54 UTC

README

composer require dndeus/module-logger

Magento 安装

bin/magento module:enable Dndeus_Logger

bin/magento setup:upgrade

使用方法

$logger = new Logger();

$data = ['name' => 'Test'];

$logger->forType('products') // this must be snakecase sting or single word
       ->success($data,'Processing the given data was successful');

$logger->forType('products_data') // this must be snakecase sting or single word
       ->failed($data,'Processing the given data failed for whatever reason');

在您的 Magento 管理区域查看日志