作者 Cool
1 个管道 的构建 通过 耗费 0 秒

融云服务端实时消息路由调试

... ... @@ -164,7 +164,7 @@ return [
// 日志记录级别
'level' => [],
// crontab日志单独记录
'apart_level' => ['rongyun_log'],
'apart_level' => ['rongyun_log','rongyun_msg'],
],
// +----------------------------------------------------------------------
// | Trace设置 开启 app_trace 后 有效
... ...
... ... @@ -5,6 +5,7 @@ namespace app\index\controller;
use app\common\controller\Frontend;
use RongCloud\Lib\Utils;
use RongCloud\RongCloud;
use think\Cache;
use think\Db;
use think\Log;
... ... @@ -140,6 +141,7 @@ class Index extends Frontend
public function callback() {
$param = $this->request->param();
Cache::set('aaa',$param);
Log::write(date('Y-m-d H:i') . '成功,返回结果:' . json_encode($param, JSON_UNESCAPED_UNICODE), 'rongyun_msg');
return json_encode(['code'=>200,'msg'=>'成功']);exit;
}
... ...