111
Phalcon Logging
This method found under directory PhalconLogger. It provides logging services for application. We can login to different backend using different adapters. It offers transaction logging, configuration options, different formats and filters.
Adapters
Adapters are used to store the logged messages. A list of supported adapters:
Adapters | Description |
---|---|
PhalconLoggerAdapterFile | Logs to a plain text file |
PhalconLoggerAdapterStream | Logs to a PHP Streams |
PhalconLoggerAdapterSyslog | Logs to the system logger |
PhalconLoggerAdapterFirePHP | Logs to the FirePHP |
Creating a Log
Next TopicPhalcon Forms