create service and command for sending reports
This commit is contained in:
8
config/ProvinceInfo.php
Normal file
8
config/ProvinceInfo.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'ip' => env('PROVINCE_INFO_IP'),
|
||||
'name' => env('PROVINCE_INFO_NAME'),
|
||||
'id' => env('PROVINCE_INFO_ID'),
|
||||
'center_ip' => env('PROVINCE_INFO_CENTER_IP'),
|
||||
];
|
||||
@@ -127,6 +127,29 @@ return [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
|
||||
'send_call_stats_report' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/send_call_stats_report.log'),
|
||||
'level' => 'debug',
|
||||
],
|
||||
|
||||
'send_keypress_stats_report' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/send_keypress_stats_report.log'),
|
||||
'level' => 'debug',
|
||||
],
|
||||
|
||||
'send_people_message_stats_report' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/send_people_message_stats_report.log'),
|
||||
'level' => 'debug',
|
||||
],
|
||||
|
||||
'send_system_message_stats_report' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/send_system_message_stats_report.log'),
|
||||
'level' => 'debug',
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user