disableLog() public static method

disableLog 停用某個 LOG
public static disableLog ( mixed $group ) : void
$group mixed
return void
 /**
  * Log Group 狀態
  */
 public function testEnableLog()
 {
     Pix_Table::enableLog(Pix_Table::LOG_CACHE);
     $this->assertEquals(Pix_Table::getLogStatus(Pix_Table::LOG_CACHE), true);
     Pix_Table::disableLog(Pix_Table::LOG_CACHE);
     $this->assertEquals(Pix_Table::getLogStatus(Pix_Table::LOG_CACHE), null);
 }