2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-15 16:19:11 +00:00

dumplevel 5 and instance prefix for icon dictionary logging

git-svn-id: https://svn.fhem.de/fhem/trunk@2037 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
borisneubert 2012-10-29 20:59:08 +00:00
parent a855132a13
commit 2b8eac8fd5

View File

@ -2133,11 +2133,11 @@ FW_ReadIcons($)
my %icons = %FW_icons;
$hash->{fhemIcons} = \%icons;
my $dumpLevel = 4;
my $dumpLevel = 5;
if($attr{global}{verbose} >= $dumpLevel) {
Log $dumpLevel, "$name: Icon dictionary for $FW_icondir follows...";
Log $dumpLevel, "$name Icon dictionary for $FW_icondir follows...";
foreach my $k (sort keys %FW_icons) {
Log $dumpLevel, " $k => " . $FW_icons{$k};
Log $dumpLevel, "$name $k => " . $FW_icons{$k};
}
}
}