lushuncheng 4 лет назад
Родитель
Сommit
6716b0b583
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      app/index/controller/Index.php

+ 2 - 0
app/index/controller/Index.php

@@ -17,6 +17,7 @@ use think\db\exception\ModelNotFoundException;
 use think\db\exception\DataNotFoundException;
 use think\facade\Cache;
 use think\facade\Db;
+use think\facade\Log as FacadeLog;
 use \think\response\Json;
 
 /**
@@ -37,6 +38,7 @@ class Index extends Controller
      */
     public function checkLogin()
     {
+        FacadeLog::info("cookies:" . json_encode($_COOKIE));
         $userInfoRes = (new WeiboService(0))->userinfo();
         if (empty($userInfoRes) || $userInfoRes['code'] != 10000) {
             return $this->response(403, $userInfoRes['msg'] ?? '没有登录');