Skip to content

Instantly share code, notes, and snippets.

@Cezarion
Last active December 14, 2015 12:49
Show Gist options
  • Save Cezarion/5088961 to your computer and use it in GitHub Desktop.
Save Cezarion/5088961 to your computer and use it in GitHub Desktop.
Drupal debuging EntityFieldQuery
/* Require Devel module */
Database::startLog('node_load_debug');
$query = new EntityFieldQuery;
$query->entityCondition('entity_type', 'node')
...
->execute;
dpm(Database::getLog('node_load_debug'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment