2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-07 19:04:20 +00:00

FB_CALLLIST: force a disabled Terse mechanism for Data::Dumper (Forum: #40192)

git-svn-id: https://svn.fhem.de/fhem/trunk@9121 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch 2015-08-23 22:01:56 +00:00
parent da97407271
commit eaa2245165

View File

@ -745,6 +745,7 @@ sub FB_CALLLIST_saveList($)
my $dumper = Data::Dumper->new([$hash->{helper}{DATA}], [qw($hash->{helper}{DATA})] );
$dumper->Purity(1);
$dumper->Terse(0);
my $dump = $dumper->Dump;
@ -816,7 +817,7 @@ sub FB_CALLLIST_loadList($)
$dump = decode_base64($dump);
}
Log3 $name, 5, "FB_CALLLIST ($name) - importing list...";
Log3 $name, 5, "FB_CALLLIST ($name) - importing list...\n$dump";
eval($dump);