定制 jinnguyen/puja-log 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jinnguyen/puja-log

Composer 安装命令:

composer require jinnguyen/puja-log

包简介

Puja-Log allow sends your logs to files, databases and you can add more drive by your self

README 文档

README

Puja-Log are the handler layers, that handle all fatal exceptions/errors ( include fatal errors) from PHP application. Support callback function

Install

composer require puja-log

Usage

include '/path/to/vendor/autoload.php';
use Puja\Logger\Logger;

Example

Log File

use Puja\Log\Logger;
 $configures = array(
     'adapters' => array(
         'default' => array(
             'driver' => 'File',
             'priority' => Logger::INFO,
             'save_path' => __DIR__ . '/',
             'file_log' => 'application.log'
         )
     )
 );
 Logger::getAdapter()->info($e); // save to application.log
 Logger::getAdapter()->debug($e, array('bin' => 'test')); // save to test.log
 

Log Db

$configures = array(
    'write_adapter_name' => 'master',
    'adapters' => array(
        'default' => array(
            'host' => 'localhost',
            'username' => 'root',
            'password' => '123',
            'dbname' => 'fwcms',
            'charset' => 'utf8',
        ),
        'master' => array(
            'host' => 'localhost',
            'username' => 'root',
            'password' => '123',
            'dbname' => 'fwcms',
            'charset' => 'utf8',
        )
    )
);

use Puja\Db\Adapter; new Adapter($configures);

use Puja\Log\Logger; $configures = array( 'adapters' => array( 'default' => array( 'driver' => 'Db', 'priority' => Logger::INFO, 'log_table' => 'puja_log_table', // table that stored log data 'create_table' => true, // should enable at very first run and disable after that ) ) ); Logger::getAdapter()->info($e); // save to application.log Logger::getAdapter()->debug($e, array('bin' => 'test')); // save to test.log

统计信息

  • 总下载量: 42
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Apache
  • 更新时间: 2016-12-19

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固