mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 12:18:46 +00:00
added better log-messages
git-svn-id: https://svn.fhem.de/fhem/trunk@2465 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
b39ed64497
commit
4d706d812d
@ -594,7 +594,7 @@ sub YAMAHA_AVR_getModel($)
|
|||||||
|
|
||||||
$response = YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"GET\"><System><Unit_Desc>GetParam</Unit_Desc></System></YAMAHA_AV>");
|
$response = YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"GET\"><System><Unit_Desc>GetParam</Unit_Desc></System></YAMAHA_AV>");
|
||||||
|
|
||||||
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get unit description url from device $name" unless (defined($response));
|
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get unit description url from device $name. Please turn on the device or check for correct hostaddress!" unless (defined($response));
|
||||||
|
|
||||||
|
|
||||||
if(defined($response) and $response =~ /<URL>(.+?)<\/URL>/)
|
if(defined($response) and $response =~ /<URL>(.+?)<\/URL>/)
|
||||||
@ -608,7 +608,7 @@ sub YAMAHA_AVR_getModel($)
|
|||||||
|
|
||||||
$response = YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"GET\"><System><Config>GetParam</Config></System></YAMAHA_AV>");
|
$response = YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"GET\"><System><Config>GetParam</Config></System></YAMAHA_AV>");
|
||||||
|
|
||||||
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get system configuration from device $name" unless (defined($response));
|
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get system configuration from device $name. Please turn on the device or check for correct hostaddress!" unless (defined($response));
|
||||||
|
|
||||||
if(defined($response) and $response =~ /<Model_Name>(.+?)<\/Model_Name>.*<System_ID>(.+?)<\/System_ID>.*<Version>(.+?)<\/Version>/)
|
if(defined($response) and $response =~ /<Model_Name>(.+?)<\/Model_Name>.*<System_ID>(.+?)<\/System_ID>.*<Version>(.+?)<\/Version>/)
|
||||||
{
|
{
|
||||||
@ -623,7 +623,7 @@ sub YAMAHA_AVR_getModel($)
|
|||||||
|
|
||||||
$response = GetFileFromURL("http://".$address.$desc_url);
|
$response = GetFileFromURL("http://".$address.$desc_url);
|
||||||
|
|
||||||
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get unit description from device $name" unless (defined($response));
|
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get unit description from device $name. Please turn on the device or check for correct hostaddress!" unless (defined($response));
|
||||||
|
|
||||||
return undef unless(defined($response));
|
return undef unless(defined($response));
|
||||||
|
|
||||||
@ -674,7 +674,7 @@ sub YAMAHA_AVR_getInputs($)
|
|||||||
my $response = YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"GET\"><$zone><Input><Input_Sel_Item>GetParam</Input_Sel_Item></Input></$zone></YAMAHA_AV>");
|
my $response = YAMAHA_AVR_SendCommand($hash, "<YAMAHA_AV cmd=\"GET\"><$zone><Input><Input_Sel_Item>GetParam</Input_Sel_Item></Input></$zone></YAMAHA_AV>");
|
||||||
|
|
||||||
|
|
||||||
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get the available inputs from device $name" unless (defined($response));
|
Log GetLogLevel($name, 3), "YAMAHA_AVR: could not get the available inputs from device $name. Please turn on the device or check for correct hostaddress!!!" unless (defined($response));
|
||||||
|
|
||||||
return undef unless (defined($response));
|
return undef unless (defined($response));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user