Constants

EMERGENCY

EMERGENCY = 'emergency'

ALERT

ALERT = 'alert'

CRITICAL

CRITICAL = 'critical'

ERROR

ERROR = 'error'

WARNING

WARNING = 'warning'

NOTICE

NOTICE = 'notice'

INFO

INFO = 'info'

DEBUG

DEBUG = 'debug'

SQL

SQL = 'sql'

Properties

$app

$app : \think\App

Type

App

$drivers

$drivers : array

驱动

Type

array

$namespace

$namespace : string

驱动的命名空间

Type

string

Methods

__construct()

__construct(\think\App  $app) : mixed

Parameters

\think\App $app

Returns

mixed —

createDriver()

createDriver(string  $name) : mixed

创建驱动

Parameters

string $name

Returns

mixed —

forgetDriver()

forgetDriver(array|string|null  $name = null) : $this

移除一个驱动实例

Parameters

array|string|null $name

Returns

$this —

getDefaultDriver()

getDefaultDriver() : string|null

默认驱动

Returns

string|null —

__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 —

save()

save() : bool

保存日志信息

Returns

bool —

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 —

listen()

listen( $listener) : \think\Event

注册日志写入事件监听

Parameters

$listener

Returns

\think\Event —

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 —

getDriver()

getDriver(string  $name) : mixed

获取驱动实例

Parameters

string $name

Returns

mixed —

resolveType()

resolveType(string  $name) : mixed

获取驱动类型

Parameters

string $name

Returns

mixed —

resolveConfig()

resolveConfig(string  $name) : mixed

获取驱动配置

Parameters

string $name

Returns

mixed —

resolveClass()

resolveClass(string  $type) : string

获取驱动类

Parameters

string $type

Returns

string —

resolveParams()

resolveParams( $name) : array

获取驱动参数

Parameters

$name

Returns

array —