Subject line (try to keep under 50 characters)

Multi-line description of commit,
feel free to be detailed.

[Ticket: X]
This commit is contained in:
Marko Oldenburg 2022-03-29 18:50:44 +02:00
parent 19f349d751
commit 55b526cda2
2 changed files with 5 additions and 3 deletions

View File

@ -1,2 +1,2 @@
UPD 2022-03-29_08:00:00 18968 FHEM/82_LGTV_WebOS.pm
UPD 2022-03-29_15:22:28 55046 lib/FHEM/Devices/LGTV/LGTVWebOS.pm
UPD 2022-03-29_18:50:02 55076 lib/FHEM/Devices/LGTV/LGTVWebOS.pm

View File

@ -711,7 +711,8 @@ sub Write {
catch {
if ( $_->isa('autodie::exception') && $_->matches(':io') ) {
::Log3( $name, 2,
"LGTV_WebOS ($name) - can't write to socket: $_" );
"LGTV_WebOS ($name) - can't write to socket, autodie exception: $_"
);
return;
}
else {
@ -759,7 +760,8 @@ sub Read {
catch {
if ( $_->isa('autodie::exception') && $_->matches(':io') ) {
::Log3( $name, 2,
"LGTV_WebOS ($name) - can't read from socket: $_" );
"LGTV_WebOS ($name) - can't read from socket, autodie exception: $_"
);
return;
}
else {