public function output($message, $channel = null)
 {
     parent::output($message);
 }
 /**
  * @param string $message
  * @param mixed $channel
  */
 protected function output($message, $channel = null)
 {
     if ($this->out) {
         $this->out->output($message, $channel);
     }
 }
 public function output($message, $channel = NULL)
 {
     if ($this->mQuiet) {
         return;
     }
     if ($this->logToStderr) {
         // We must log to stderr
         fwrite(STDERR, $message);
     } else {
         parent::output($message);
     }
 }