IndexController.php 758 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. namespace App\Controller;
  12. use App\Library\Log;
  13. use App\Library\HttpRequest\Client;
  14. class IndexController extends AbstractController
  15. {
  16. public function index()
  17. {
  18. return 'Congratulations, job server is running!';
  19. }
  20. /**
  21. * 记入日志
  22. * @param $log_title [日志路径]
  23. * @param $message [内容,不支持数组]
  24. * @param $remarks [备注]
  25. */
  26. protected function log($log_title,$message,$remarks='info'){
  27. Log::get($remarks,$log_title)->info($message);
  28. }
  29. }