remove some logger

This commit is contained in:
dongwei 2019-02-12 15:11:47 +08:00
parent 54c80c06f3
commit 301271771e

View File

@ -39,9 +39,7 @@ class TunnelMiddleware
{ {
//过滤tool返回结果 //过滤tool返回结果
if ($response instanceof JsonResponse) { if ($response instanceof JsonResponse) {
app('rpc.logger')->info('record to influxdb', [app()->environment('dev', 'production')]);
if (app()->environment('dev', 'production')) { if (app()->environment('dev', 'production')) {
app('rpc.logger')->info('record to influxdb');
$content = $response->getOriginalContent(); $content = $response->getOriginalContent();
$status = isset($content['error']) ? $content['error']['code'] : 200; $status = isset($content['error']) ? $content['error']['code'] : 200;
$client = new \InfluxDB\Client("10.0.1.67"); $client = new \InfluxDB\Client("10.0.1.67");