DevIo: beautify log msg for bin data

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@5388 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
ntruchsess
2014-03-31 16:32:25 +00:00
parent 000ac5b945
commit bd4586e417

View File

@@ -101,7 +101,7 @@ DevIo_SimpleWrite($$$)
return if(!$hash);
my $name = $hash->{NAME};
Log3 $name, 5, "SW: $msg";
Log3 ($name, 5, $ishex ? "SW: $msg" : "SW: ".unpack("H*",$msg));
$msg = pack('H*', $msg) if($ishex);
$hash->{USBDev}->write($msg) if($hash->{USBDev});