sfVarLogger logs messages within its instance for later use.
Method Summary
Methods inherited from sfLogger
alert , crit , debug , doLog , emerg , err , getLogLevel , getOptions , getPriorityName , info , initialize , listenToLogEvent , log , notice , setLogLevel , setOption , shutdown , warning , __construct
Method Details
-
doLog ($message, $priority)
Browse code
| $message |
Message |
| $priority |
Message priority |
Logs a message.
-
(array) getDebugBacktrace ()
Browse code
Returns the debug stack.
-
(integer) getHighestPriority ()
Browse code
Returns the highest priority in the logs.
returns The highest priority
-
Gets the logs.
Each log entry has the following attributes: * priority
* time
* message
* type
* debugStack
returns An array of logs
-
(array) getPriorities ()
Browse code
Returns all the priorities in the logs.
returns An array of priorities
-
Returns all the types in the logs.
returns An array of types
-
(array) getXDebugStack ()
Browse code
Returns the xdebug stack.
returns The xdebug stack as an array
-
(Boolean) initialize ($dispatcher, $options)
Browse code
| $dispatcher |
A sfEventDispatcher instance |
| $options |
An array of options. |
Initializes this logger.
Available options: - xdebug_logging: Whether to add xdebug trace to the logs (false by default).
returns true, if initialization completes successfully, otherwise false.
|