Server : nginx/1.20.1 System : Linux iZ2ze9ojcl78uluczwag69Z 4.18.0-240.22.1.el8_3.x86_64 #1 SMP Thu Apr 8 19:01:30 UTC 2021 x86_64 User : www ( 1000) PHP Version : 7.3.28 Disable Function : passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/0531yanglao.com/vendor/topthink/framework/src/think/log/ |
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006~2021 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: yunwuxin <448901948@qq.com> // +---------------------------------------------------------------------- declare (strict_types = 1); namespace think\log; use Psr\Log\LoggerInterface; use think\contract\LogHandlerInterface; use think\Event; use think\event\LogRecord; use think\event\LogWrite; class Channel implements LoggerInterface { protected $name; protected $logger; protected $event; protected $lazy = true; /** * 日志信息 * @var array */ protected $log = []; /** * 关闭日志 * @var array */ protected $close = false; /** * 允许写入类型 * @var array */ protected $allow = []; public function __construct(string $name, LogHandlerInterface $logger, array $allow, bool $lazy = true, Event $event = null) { $this->name = $name; $this->logger = $logger; $this->allow = $allow; $this->lazy = $lazy; $this->event = $event; } /** * 关闭通道 */ public function close() { $this->clear(); $this->close = true; } /** * 清空日志 */ public function clear() { $this->log = []; } /** * 记录日志信息 * @access public * @param mixed $msg 日志信息 * @param string $type 日志级别 * @param array $context 替换内容 * @param bool $lazy * @return $this */ public function record($msg, string $type = 'info', array $context = [], bool $lazy = true) { if ($this->close || (!empty($this->allow) && !in_array($type, $this->allow))) { return $this; } if (is_string($msg) && !empty($context)) { $replace = []; foreach ($context as $key => $val) { $replace['{' . $key . '}'] = $val; } $msg = strtr($msg, $replace); } if (!empty($msg) || 0 === $msg) { $this->log[$type][] = $msg; if ($this->event) { $this->event->trigger(new LogRecord($type, $msg)); } } if (!$this->lazy || !$lazy) { $this->save(); } return $this; } /** * 实时写入日志信息 * @access public * @param mixed $msg 调试信息 * @param string $type 日志级别 * @param array $context 替换内容 * @return $this */ public function write($msg, string $type = 'info', array $context = []) { return $this->record($msg, $type, $context, false); } /** * 获取日志信息 * @return array */ public function getLog(): array { return $this->log; } /** * 保存日志 * @return bool */ public function save(): bool { $log = $this->log; if ($this->event) { $event = new LogWrite($this->name, $log); $this->event->trigger($event); $log = $event->log; } if ($this->logger->save($log)) { $this->clear(); return true; } return false; } /** * System is unusable. * * @param string $message * @param array $context * * @return void */ public function emergency($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Action must be taken immediately. * * Example: Entire website down, database unavailable, etc. This should * trigger the SMS alerts and wake you up. * * @param string $message * @param array $context * * @return void */ public function alert($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Critical conditions. * * Example: Application component unavailable, unexpected exception. * * @param string $message * @param array $context * * @return void */ public function critical($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Runtime errors that do not require immediate action but should typically * be logged and monitored. * * @param string $message * @param array $context * * @return void */ public function error($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Exceptional occurrences that are not errors. * * Example: Use of deprecated APIs, poor use of an API, undesirable things * that are not necessarily wrong. * * @param string $message * @param array $context * * @return void */ public function warning($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Normal but significant events. * * @param string $message * @param array $context * * @return void */ public function notice($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Interesting events. * * Example: User logs in, SQL logs. * * @param string $message * @param array $context * * @return void */ public function info($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Detailed debug information. * * @param string $message * @param array $context * * @return void */ public function debug($message, array $context = []) { $this->log(__FUNCTION__, $message, $context); } /** * Logs with an arbitrary level. * * @param mixed $level * @param string $message * @param array $context * * @return void */ public function log($level, $message, array $context = []) { $this->record($message, $level, $context); } public function __call($method, $parameters) { $this->log($method, ...$parameters); } }