The Zend_Log_Writer_Null is a stub that does not write log data
to anything. It is useful for disabling logging or stubbing out logging during tests:
<?php
$writer = new Zend_Log_Writer_Null;
$logger = new Zend_Log($writer);
// goes nowhere
$logger->info('Informational message');




