bind() bind(string|array $name, string $class = null) : object 绑定类的静态代理 Parameters string|array $name 类标识 string $class 类名 Returns object
make() make(string $class, array|true $args = array(), boolean $newInstance = false) : mixed 调用类的实例 Parameters string $class 类名或者标识 array|true $args 变量 boolean $newInstance 是否每次创建新的实例 Returns mixed
init() init(array $config = []) : \think\Log static 日志初始化 Parameters array $config Returns \think\Log
record() record(mixed $msg, string $type = 'info', array $context = []) : \think\Log static 记录日志信息 Parameters mixed $msg string $type array $context Returns \think\Log
write() write(mixed $msg, string $type = 'info', boolean $force = false) : void static 实时写入日志信息 Parameters mixed $msg string $type boolean $force
log() log(string $level, mixed $message, array $context = []) : void static 记录日志信息 Parameters string $level mixed $message array $context
emergency() emergency(mixed $message, array $context = []) : void static 记录emergency信息 Parameters mixed $message array $context
alert() alert(mixed $message, array $context = []) : void static 记录alert信息 Parameters mixed $message array $context
critical() critical(mixed $message, array $context = []) : void static 记录critical信息 Parameters mixed $message array $context
error() error(mixed $message, array $context = []) : void static 记录error信息 Parameters mixed $message array $context
warning() warning(mixed $message, array $context = []) : void static 记录warning信息 Parameters mixed $message array $context
notice() notice(mixed $message, array $context = []) : void static 记录notice信息 Parameters mixed $message array $context
info() info(mixed $message, array $context = []) : void static 记录info信息 Parameters mixed $message array $context
debug() debug(mixed $message, array $context = []) : void static 记录debug信息 Parameters mixed $message array $context
sql() sql(mixed $message, array $context = []) : void static 记录sql信息 Parameters mixed $message array $context
createFacade() createFacade(string $class = '', array $args = array(), boolean $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 boolean $newInstance 是否每次创建新的实例 Returns object