startLogging() public static method

Use this method to start logging SQL queries being executed by the adapter.
public static startLogging ( ) : 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);
 }