forgetDriver() forgetDriver(array|string|null $name = null) : $this 移除一个驱动实例 Parameters array|string|null $name Returns $this —
__call() __call(mixed $method, mixed $parameters) : mixed 动态调用 Parameters mixed $method mixed $parameters Returns mixed —
getConfig() getConfig(null|string $name = null, mixed $default = null) : mixed 获取日志配置 Parameters null|string $name 名称 mixed $default 默认值 Returns mixed —
getChannelConfig() getChannelConfig(string $channel, null $name = null, null $default = null) : array 获取渠道配置 Parameters string $channel null $name null $default Returns array —
channel() channel(string|array $name = null) : \think\log\Channel|\think\log\ChannelSet driver()的别名 Parameters string|array $name 渠道名 Returns \think\log\Channel|\think\log\ChannelSet —
clear() clear(string|array $channel = '*') : $this 清空日志信息 Parameters string|array $channel 日志通道名 Returns $this —
close() close(string|array $channel = '*') : $this 关闭本次请求日志写入 Parameters string|array $channel 日志通道名 Returns $this —
getLog() getLog(string $channel = null) : array 获取日志信息 Parameters string $channel 日志通道名 Returns array —
record() record(mixed $msg, string $type = 'info', array $context = [], bool $lazy = true) : $this 记录日志信息 Parameters mixed $msg 日志信息 string $type 日志级别 array $context 替换内容 bool $lazy Returns $this —
write() write(mixed $msg, string $type = 'info', array $context = []) : $this 实时写入日志信息 Parameters mixed $msg 调试信息 string $type 日志级别 array $context 替换内容 Returns $this —
log() log(string $level, mixed $message, array $context = []) : void 记录日志信息 Parameters string $level 日志级别 mixed $message 日志信息 array $context 替换内容
emergency() emergency(mixed $message, array $context = []) : void 记录emergency信息 Parameters mixed $message 日志信息 array $context 替换内容
alert() alert(mixed $message, array $context = []) : void 记录警报信息 Parameters mixed $message 日志信息 array $context 替换内容
critical() critical(mixed $message, array $context = []) : void 记录紧急情况 Parameters mixed $message 日志信息 array $context 替换内容
error() error(mixed $message, array $context = []) : void 记录错误信息 Parameters mixed $message 日志信息 array $context 替换内容
warning() warning(mixed $message, array $context = []) : void 记录warning信息 Parameters mixed $message 日志信息 array $context 替换内容
notice() notice(mixed $message, array $context = []) : void 记录notice信息 Parameters mixed $message 日志信息 array $context 替换内容
info() info(mixed $message, array $context = []) : void 记录一般信息 Parameters mixed $message 日志信息 array $context 替换内容
debug() debug(mixed $message, array $context = []) : void 记录调试信息 Parameters mixed $message 日志信息 array $context 替换内容
sql() sql(mixed $message, array $context = []) : void 记录sql信息 Parameters mixed $message 日志信息 array $context 替换内容
driver() driver(null|string $name = null) : mixed 获取驱动实例 Parameters null|string $name Returns mixed —