patch-closewontworkonfileno #10

Merged
marko merged 8 commits from patch-closewontworkonfileno into dev 2022-03-31 04:46:29 +00:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 55b526cda2 - Show all commits

View File

@ -1,2 +1,2 @@
UPD 2022-03-29_08:00:00 18968 FHEM/82_LGTV_WebOS.pm 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 { catch {
if ( $_->isa('autodie::exception') && $_->matches(':io') ) { if ( $_->isa('autodie::exception') && $_->matches(':io') ) {
::Log3( $name, 2, ::Log3( $name, 2,
"LGTV_WebOS ($name) - can't write to socket: $_" ); "LGTV_WebOS ($name) - can't write to socket, autodie exception: $_"
);
return; return;
} }
else { else {
@ -759,7 +760,8 @@ sub Read {
catch { catch {
if ( $_->isa('autodie::exception') && $_->matches(':io') ) { if ( $_->isa('autodie::exception') && $_->matches(':io') ) {
::Log3( $name, 2, ::Log3( $name, 2,
"LGTV_WebOS ($name) - can't read from socket: $_" ); "LGTV_WebOS ($name) - can't read from socket, autodie exception: $_"
);
return; return;
} }
else { else {