\PhalApi_Logger_Explorer

PhalApi_Logger_Explorer 直接输出日记到控制台的日记类

  • 测试环境下使用

Summary

Methods
Properties
Constants
__construct()
log()
info()
debug()
error()
No public properties found
LOG_LEVEL_DEBUG
LOG_LEVEL_INFO
LOG_LEVEL_ERROR
isAllowToLog()
$logLevel
N/A
No private methods found
No private properties found
N/A

Constants

LOG_LEVEL_DEBUG

LOG_LEVEL_DEBUG

LOG_LEVEL_INFO

LOG_LEVEL_INFO

LOG_LEVEL_ERROR

LOG_LEVEL_ERROR

Properties

$logLevel

$logLevel : integer

Type

integer — 多个日记级别

Methods

__construct()

__construct(  $level) 

Parameters

$level

log()

log(string  $type, string  $msg, \string/array  $data) : NULL

日记纪录

可根据不同需要,将日记写入不同的媒介

Parameters

string $type

日记类型,如:info/debug/error, etc

string $msg

日记关键描述

\string/array $data

场景上下文信息

Returns

NULL

info()

info(string  $msg, \string/array  $data = NULL) : NULL

应用产品级日记

Parameters

string $msg

日记关键描述

\string/array $data

场景上下文信息

Returns

NULL

debug()

debug(string  $msg, \string/array  $data = NULL) : NULL

开发调试级日记

Parameters

string $msg

日记关键描述

\string/array $data

场景上下文信息

Returns

NULL

error()

error(string  $msg, \string/array  $data = NULL) : NULL

系统错误级日记

Parameters

string $msg

日记关键描述

\string/array $data

场景上下文信息

Returns

NULL

isAllowToLog()

isAllowToLog(integer  $logLevel) : boolean

是否允许写入日记,或运算

Parameters

integer $logLevel

Returns

boolean