Просмотр исходного кода

fix: 修改小程序配置(打开日志)

Gosowong 2 лет назад
Родитель
Сommit
730073048a
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      crmeb/crmeb/services/app/MiniProgramService.php

+ 10 - 0
crmeb/crmeb/services/app/MiniProgramService.php

@@ -101,6 +101,16 @@ class MiniProgramService
             $appId = isset($wechat['routine_appId']) ? trim($wechat['routine_appId']) : '';
             $appsecret = isset($wechat['routine_appsecret']) ? trim($wechat['routine_appsecret']) : '';
         }
+        $config = [
+            'token' => isset($wechat['wechat_token']) ? trim($wechat['wechat_token']) : '',
+            'aes_key' => isset($wechat['wechat_encodingaeskey']) ? trim($wechat['wechat_encodingaeskey']) : '',
+            'debug' => true,
+            'log' => [
+                'level' => 'debug',
+                'permission' => 0777,
+                'file' => '/www/wwwroot/bz.wuht.net/crmeb/crmeb/runtime/log',
+            ],
+        ];
         $config['mini_program'] = [
             'app_id' => $appId,
             'secret' => $appsecret,