Log.php 304 B

123456789101112131415
  1. <?php
  2. namespace App\Library;
  3. use Hyperf\Logger\LoggerFactory;
  4. use Hyperf\Utils\ApplicationContext;
  5. class Log
  6. {
  7. public static function get(string $name = 'app',string $group = 'default')
  8. {
  9. return ApplicationContext::getContainer()->get(LoggerFactory::class)->get($name,$group);
  10. }
  11. }