123456789101112131415161718192021222324252627282930 |
- <?php
- namespace app\common\library;
- use Psr\Log\AbstractLogger;
- use think\Hook;
- class Log extends AbstractLogger
- {
-
- public function log($level, $message, array $context = array())
- {
- \think\Log::write($message);
- }
- }
|