diff --git a/XMPPHP/Log.php b/XMPPHP/Log.php index 752841f..a9bce3d 100644 --- a/XMPPHP/Log.php +++ b/XMPPHP/Log.php @@ -84,7 +84,7 @@ class XMPPHP_Log { */ public function log($msg, $runlevel = self::LEVEL_INFO) { $time = time(); - $this->data[] = array($this->runlevel, $msg, $time); + #$this->data[] = array($this->runlevel, $msg, $time); if($this->printout and $runlevel <= $this->runlevel) { $this->writeLine($msg, $runlevel, $time); }