#866 add debug on register plugin error

This commit is contained in:
Oliver Gorwits
2022-05-15 16:21:03 +01:00
parent b2d8984afd
commit 96f3923ab0

View File

@@ -66,6 +66,7 @@ register 'register_device_port_column' => sub {
$config->{position} ||= 'right'; $config->{position} ||= 'right';
if (!$config->{name} or !$config->{label}) { if (!$config->{name} or !$config->{label}) {
debug $config;
return error "bad config to register_device_port_column"; return error "bad config to register_device_port_column";
} }
@@ -83,6 +84,7 @@ register 'register_device_details' => sub {
my ($self, $config) = plugin_args(@_); my ($self, $config) = plugin_args(@_);
if (!$config->{name} or !$config->{label}) { if (!$config->{name} or !$config->{label}) {
debug $config;
return error "bad config to register_device_details"; return error "bad config to register_device_details";
} }
@@ -103,6 +105,7 @@ register 'register_navbar_item' => sub {
or !$config->{path} or !$config->{path}
or !$config->{label}) { or !$config->{label}) {
debug $config;
return error "bad config to register_navbar_item"; return error "bad config to register_navbar_item";
} }
@@ -122,6 +125,7 @@ register 'register_admin_task' => sub {
if (!$config->{tag} if (!$config->{tag}
or !$config->{label}) { or !$config->{label}) {
debug $config;
return error "bad config to register_admin_task"; return error "bad config to register_admin_task";
} }
@@ -136,6 +140,7 @@ sub _register_tab {
if (!$config->{tag} if (!$config->{tag}
or !$config->{label}) { or !$config->{label}) {
debug $config;
return error "bad config to register_${nav}_item"; return error "bad config to register_${nav}_item";
} }
@@ -183,6 +188,7 @@ register 'register_report' => sub {
or !$config->{label} or !$config->{label}
or 0 == scalar grep {$config->{category} eq $_} @categories) { or 0 == scalar grep {$config->{category} eq $_} @categories) {
debug $config;
return error "bad config to register_report"; return error "bad config to register_report";
} }