2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

Blocking.pm: More error message (Forum #27770)

git-svn-id: https://svn.fhem.de/fhem/trunk@6735 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-10-10 07:39:18 +00:00
parent ac79aee7ba
commit 8245d3b1f2

View File

@ -113,7 +113,7 @@ BlockingInformParent($;$$)
if(!$telnetClient) { if(!$telnetClient) {
my $addr = "localhost:$defs{$telnetDevice}{PORT}"; my $addr = "localhost:$defs{$telnetDevice}{PORT}";
$telnetClient = IO::Socket::INET->new(PeerAddr => $addr); $telnetClient = IO::Socket::INET->new(PeerAddr => $addr);
Log 1, "CallBlockingFn: Can't connect to $addr\n" if(!$telnetClient); Log 1, "CallBlockingFn: Can't connect to $addr: $@" if(!$telnetClient);
} }
if(defined($param)) { if(defined($param)) {