client log config

This commit is contained in:
dongwei 2019-01-11 15:30:28 +08:00
parent b0d88bc2bf
commit 213b742c39

View File

@ -4,7 +4,6 @@ namespace JsonRpc;
use GuzzleHttp\Exception\ServerException; use GuzzleHttp\Exception\ServerException;
use JsonRpc\Exception\RpcServerException; use JsonRpc\Exception\RpcServerException;
use JsonRpc\Logging\LogstashFormatter;
use Monolog\Handler\StreamHandler; use Monolog\Handler\StreamHandler;
use Monolog\Logger; use Monolog\Logger;
@ -25,7 +24,7 @@ class Client
$default = [ $default = [
'app' => '***', 'app' => '***',
'log_path'=> "/logs/rpc_monitor_".date("Ymd").".log", 'log_path'=> "/logs/rpc_monitor_".date("Ymd").".log",
'log_formatter' => 'LogstashFormatter', 'log_formatter' => 'JsonRpc\Logging\LogstashFormatter',
]; ];
$this->config = array_merge($default, $config); $this->config = array_merge($default, $config);
$stream = new StreamHandler(app()->storagePath().$this->config['log_path']); $stream = new StreamHandler(app()->storagePath().$this->config['log_path']);