Update some of the debug messages.
parent
0829fb3cf3
commit
dad1844e97
|
@ -105,7 +105,7 @@ class Rss extends StylePluginBase {
|
||||||
|
|
||||||
function render() {
|
function render() {
|
||||||
if (empty($this->row_plugin)) {
|
if (empty($this->row_plugin)) {
|
||||||
vpr('views_plugin_style_default: Missing row plugin');
|
vpr('Drupal\views\Plugin\views\style\Rss: Missing row plugin');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$rows = '';
|
$rows = '';
|
||||||
|
|
|
@ -324,7 +324,7 @@ abstract class StylePluginBase extends PluginBase {
|
||||||
*/
|
*/
|
||||||
function render() {
|
function render() {
|
||||||
if ($this->uses_row_plugin() && empty($this->row_plugin)) {
|
if ($this->uses_row_plugin() && empty($this->row_plugin)) {
|
||||||
debug('views_plugin_style_default: Missing row plugin');
|
vpr('Drupal\views\Plugin\views\style\StylePluginBase: Missing row plugin');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue