Cache of logged queries. Only used if the query logger is enabled.

The structure for the logging array is as follows:

array(
  $logging_key = array(
    array(query => '', args => array(), caller => '', target => '', time => 0),
    array(query => '', args => array(), caller => '', target => '', time => 0),
  ),
);

Type: array

File

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

Class

DatabaseLog
Database query logger.

Code

protected $queryLog = array();