Debugging only

This commit is contained in:
Marko Oldenburg 2020-05-01 20:17:16 +02:00
parent cec6f663f1
commit 0fc3d1dfba
2 changed files with 4 additions and 2 deletions

View File

@ -62,7 +62,6 @@ use strict;
use warnings;
use POSIX;
use FHEM::Meta;
use Data::Dumper;
use HttpUtils;

View File

@ -63,6 +63,8 @@ use POSIX;
use FHEM::Meta;
use Time::Local;
use Data::Dumper; # only for debugging
# try to use JSON::MaybeXS wrapper
# for chance of better performance + open code
eval {
@ -296,7 +298,8 @@ sub Set {
elsif ( lc $cmd eq 'startpoint' ) {
my $err;
( $err, $payload, $abilities ) = SetPredefinedStartPoints( $hash, @$aArg );
print Dumper $aArg;
# ( $err, $payload, $abilities ) = SetPredefinedStartPoints( $hash, @$aArg );
return $err if ( defined($err) );
}