stopLogging() public static method

Stops logging, comfortable method to stop logging of queries.
public static stopLogging ( ) : void
return void
Esempio n. 1
0
 /**
  * Test basic logging functionality.
  *
  * @return void
  */
 public function testBasicLogging()
 {
     R::nuke();
     R::startLogging();
     R::store(R::dispense('book'));
     $logs = R::getLogs();
     $count = count($logs);
     asrt(count($logs) > 0, TRUE);
     asrt(R::getLogger() instanceof Logger, TRUE);
     R::stopLogging();
     R::store(R::dispense('book'));
     $logs = R::getLogs();
     asrt(count($logs) === 0, TRUE);
 }