Executes a view with debugging.
\Drupal\views\ViewExecutable $view: The view object.
array $args: (optional) An array of the view arguments to use for the view.
protected function executeView($view, $args = array()) {
$view
->setDisplay();
$view
->preExecute($args);
$view
->execute();
$this
->verbose('<pre>Executed view: ' . (string) $view->build_info['query'] . '</pre>');
}