seven 5 일 전
부모
커밋
14b373e822
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Http/Controllers/api/TelegramWebHook.php

+ 1 - 1
app/Http/Controllers/api/TelegramWebHook.php

@@ -38,7 +38,7 @@ class TelegramWebHook extends Controller
         }
         $update = $telegram->getWebhookUpdate(); // 获取更新数据
         $update->callbackQuery;
-        Log::info('Telegram 回调数据(JSON): ' . json_encode($update, JSON_UNESCAPED_UNICODE));
+        Log::error('Telegram 回调数据(JSON): ' . json_encode($update, JSON_UNESCAPED_UNICODE));
         return response()->json(['status' => 'ok']);
     }