DatabaseLog::log

7 log.inc public DatabaseLog::log(DatabaseStatementInterface $statement, $args, $time)

Log a query to all active logging keys.

Parameters

$statement: The prepared statement object to log.

$args: The arguments passed to the statement object.

$time: The time in milliseconds the query took to execute.

File

includes/database/log.inc, line 115
Logging classes for the database layer.

Code

public function log(DatabaseStatementInterface $statement, $args, $time) {
  foreach (array_keys($this->queryLog) as $key) {
    $this->queryLog[$key][] = array(
      'query' => $statement->getQueryString(), 
      'args' => $args, 
      'target' => $statement->dbh->getTarget(), 
      'caller' => $this->findCaller(), 
      'time' => $time,
    );
  }
}
Login or register to post comments