PHP Logging framework? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T20:16:29Z http://stackoverflow.com/feeds/question/341154 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/341154/php-logging-framework 4 PHP Logging framework? Pablo Alsina 2008-12-04T16:11:32Z 2009-11-11T15:44:11Z <p>I'm looking for a simple PHP logging framework. What I need is something simple to plug-in into our PHP project, allowing for some configuration file to state what to log (INFOrmation, DEBUGging, etc.) and where to log it (MySQL, syslog, logfile...)</p> <p>I've seen in Java you have <a href="http://logging.apache.org/log4j/index.html" rel="nofollow">log4j</a> and for .NET you have <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">log4net</a>. In PHP there are some projects starting to mimic those (see <a href="http://incubator.apache.org/log4php/" rel="nofollow">log4php</a> and <a href="http://code.google.com/p/log5php/" rel="nofollow">log5php</a>) but both are still not mature enough.</p> <p>Thanks</p> http://stackoverflow.com/questions/341154/php-logging-framework/341181#341181 3 Answer by Milen A. Radev for PHP Logging framework? Milen A. Radev 2008-12-04T16:17:53Z 2008-12-04T16:17:53Z <p>Probably <a href="http://pear.php.net/package/Log" rel="nofollow">PEAR's Log</a>?</p> <p>(I haven't used it)</p> http://stackoverflow.com/questions/341154/php-logging-framework/341198#341198 5 Answer by dcousineau for PHP Logging framework? dcousineau 2008-12-04T16:21:48Z 2008-12-04T16:21:48Z <p>Zend Framework has a nice logging class <a href="http://framework.zend.com/manual/en/zend.log.html" rel="nofollow">Zend_Log</a>. Zend_Log has you set a <em>Writer</em>, <em>Filter</em>, and a <em>Formatter</em> which should give you a fairly robust amount of control.</p> <p>I can't think of what it's dependencies are right off the bat, but if you do decide to use it, it's quick and easy to use and the Zend Framework comes with a <em>Writer</em> class that uses the Zend_Wildfire component (<a href="http://www.firephp.org/" rel="nofollow">FirePHP</a>), which would allow you to log directly to Firebug in your browser.</p> <p>The only problem is you will have to spend some time extracting the logging classes out of the Zend Framework, but it shouldn't be too difficult. If it has no major dependencies you just grab <code>Log.php</code> and the <code>Log\</code> folder from the Zend Framework download.</p> http://stackoverflow.com/questions/341154/php-logging-framework/341299#341299 1 Answer by Gary Richardson for PHP Logging framework? Gary Richardson 2008-12-04T16:52:53Z 2008-12-04T16:52:53Z <p>What qualifies a logging package as 'mature enough'?</p> <p>I'm happy for log4php. I have it configured to write to syslog. In my setup, the syslog messages are centralized. </p> http://stackoverflow.com/questions/341154/php-logging-framework/1716048#1716048 2 Answer by shaiss for PHP Logging framework? shaiss 2009-11-11T15:44:11Z 2009-11-11T15:44:11Z <p>kLogger so far looks the best <a href="http://codefury.net/2008/07/klogger-a-simple-logging-class-for-php/" rel="nofollow">http://codefury.net/2008/07/klogger-a-simple-logging-class-for-php/</a></p>