Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abtris/zf-examples-firebug-logging

Zend Framework example page with Firebug logger
https://github.com/abtris/zf-examples-firebug-logging

Last synced: about 1 month ago
JSON representation

Zend Framework example page with Firebug logger

Awesome Lists containing this project

README

        

h1. Zend Framework Examples

h2. Firebug logging

In indexController set:

@$writer = new Zend_Log_Writer_Firebug();@

@$log = new Zend_Log($writer);@

@// messages@
@$log->log($_REQUEST, Zend_Log::ERR);@
@$log->log($_ENV, Zend_Log::ALERT);@
@$log->log($_SERVER, Zend_Log::ALERT);@