improve debug message

This commit is contained in:
Dietmar Maurer 2014-06-23 13:53:41 +02:00
parent 2d3bca34dd
commit b732bea701

View File

@ -115,7 +115,7 @@ sub init {
foreach my $type (keys %$plugins) { foreach my $type (keys %$plugins) {
my $props = $plugins->{$type}->properties(); my $props = $plugins->{$type}->properties();
foreach my $p (keys %$props) { foreach my $p (keys %$props) {
die "duplicate property" if defined($propertyList->{$p}); die "duplicate property '$p'" if defined($propertyList->{$p});
my $res = $propertyList->{$p} = {}; my $res = $propertyList->{$p} = {};
my $data = $props->{$p}; my $data = $props->{$p};
for my $a (keys %$data) { for my $a (keys %$data) {