system system.base system.caching system.caching.dependencies system.collections system.console system.db system.db.ar system.db.schema system.db.schema.mssql system.db.schema.mysql system.db.schema.oci system.db.schema.pgsql system.db.schema.sqlite system.i18n system.i18n.gettext system.logging system.utils system.validators system.web system.web.actions system.web.auth system.web.filters system.web.helpers system.web.renderers system.web.services system.web.widgets system.web.widgets.captcha system.web.widgets.pagers

CLogFilter

system.logging
继承 class CLogFilter » CComponent
可用自 1.0.6
版本 $Id$
CLogFilter preprocesses the logged messages before they are handled by a log route.

CLogFilter is meant to be used by a log route to preprocess the logged messages before they are handled by the route. The default implementation of CLogFilter prepends additional context information to the logged messages. In particular, by setting logVars, predefined PHP variables such as $_SERVER, $_POST, etc. can be saved as a log message, which may help identify/debug issues encountered.

公共属性

隐藏继承的属性

属性类型描述被定义在
logUser boolean whether to log the current user name and ID. CLogFilter
logVars array list of the PHP predefined variables that should be logged. CLogFilter
prefixSession boolean whether to prefix each log message with the current user session ID. CLogFilter
prefixUser boolean whether to prefix each log message with the current user name and ID. CLogFilter

受保护的属性

隐藏继承的属性

属性类型描述被定义在
context string Generates the context information to be logged. CLogFilter

公共方法

隐藏继承的方法

方法描述被定义在
__call() Calls the named method which is not a class method. CComponent
__get() Returns a property value, an event handler list or a behavior based on its name. CComponent
__isset() Checks if a property value is null. CComponent
__set() Sets value of a component property. CComponent
__unset() Sets a component property to be null. CComponent
asa() Returns the named behavior object. CComponent
attachBehavior() Attaches a behavior to this component. CComponent
attachBehaviors() Attaches a list of behaviors to the component. CComponent
attachEventHandler() Attaches an event handler to an event. CComponent
canGetProperty() Determines whether a property can be read. CComponent
canSetProperty() Determines whether a property can be set. CComponent
detachBehavior() Detaches a behavior from the component. CComponent
detachBehaviors() Detaches all behaviors from the component. CComponent
detachEventHandler() Detaches an existing event handler. CComponent
disableBehavior() Disables an attached behavior. CComponent
disableBehaviors() Disables all behaviors attached to this component. CComponent
enableBehavior() Enables an attached behavior. CComponent
enableBehaviors() Enables all behaviors attached to this component. CComponent
filter() Filters the given log messages. CLogFilter
getEventHandlers() Returns the list of attached event handlers for an event. CComponent
hasEvent() Determines whether an event is defined. CComponent
hasEventHandler() Checks whether the named event has attached handlers. CComponent
hasProperty() Determines whether a property is defined. CComponent
raiseEvent() Raises an event. CComponent

受保护的方法

隐藏继承的方法

方法描述被定义在
format() Formats the log messages. CLogFilter
getContext() Generates the context information to be logged. CLogFilter

属性详情

context 属性 只读
protected string getContext()

Generates the context information to be logged. The default implementation will dump user information, system variables, etc.

logUser 属性
public boolean $logUser;

whether to log the current user name and ID. Defaults to true. This property is effective only when showContext is true.

logVars 属性
public array $logVars;

list of the PHP predefined variables that should be logged. Note that a variable must be accessible via $GLOBALS. Otherwise it won't be logged.

prefixSession 属性
public boolean $prefixSession;

whether to prefix each log message with the current user session ID. Defaults to false.

prefixUser 属性
public boolean $prefixUser;

whether to prefix each log message with the current user name and ID. Defaults to false.

方法详情

filter() 方法
public void filter(array $logs)
$logs array the log messages

Filters the given log messages. This is the main method of CLogFilter. It processes the log messages by adding context information, etc.

format() 方法
protected void format($logs)
$logs

Formats the log messages. The default implementation will prefix each message with session ID if prefixSession is set true. It may also prefix each message with the current user's name and ID if prefixUser is true.

getContext() 方法
protected string getContext()
{return} string the context information. If an empty string, it means no context information.

Generates the context information to be logged. The default implementation will dump user information, system variables, etc.