From 61be4055f17c5cef4d7a5353c49122644648ffc2 Mon Sep 17 00:00:00 2001 From: markusbloch <> Date: Sat, 13 Feb 2016 11:18:05 +0000 Subject: [PATCH] YAMAHA_AVR: move several Log3 messages for HTTP communication from verbose level 5 to 4 git-svn-id: https://svn.fhem.de/fhem/trunk@10812 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/71_YAMAHA_AVR.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fhem/FHEM/71_YAMAHA_AVR.pm b/fhem/FHEM/71_YAMAHA_AVR.pm index 6a8270db5..46eeaaa44 100755 --- a/fhem/FHEM/71_YAMAHA_AVR.pm +++ b/fhem/FHEM/71_YAMAHA_AVR.pm @@ -1185,7 +1185,7 @@ YAMAHA_AVR_ParseResponse ($$$) if(exists($param->{code})) { - Log3 $name, 5, "YAMAHA_AVR ($name) - received HTTP code ".$param->{code}." for command \"$cmd".(defined($arg) ? " ".(split("\\|", $arg))[0] : "")."\""; + Log3 $name, 4, "YAMAHA_AVR ($name) - received HTTP code ".$param->{code}." for command \"$cmd".(defined($arg) ? " ".(split("\\|", $arg))[0] : "")."\""; if($cmd eq "statusRequest" and $param->{code} ne "200") { @@ -1206,7 +1206,7 @@ YAMAHA_AVR_ParseResponse ($$$) if($err ne "" and not $options->{can_fail}) { - Log3 $name, 5, "YAMAHA_AVR ($name) - could not execute command \"$cmd".(defined($arg) ? " ".(split("\\|", $arg))[0] : "")."\": $err"; + Log3 $name, 4, "YAMAHA_AVR ($name) - could not execute command \"$cmd".(defined($arg) ? " ".(split("\\|", $arg))[0] : "")."\": $err"; if((not exists($hash->{helper}{AVAILABLE})) or (exists($hash->{helper}{AVAILABLE}) and $hash->{helper}{AVAILABLE} eq 1)) { @@ -1220,7 +1220,7 @@ YAMAHA_AVR_ParseResponse ($$$) if($data ne "") { - Log3 $name, 5, "YAMAHA_AVR ($name) - got response for \"$cmd".(defined($arg) ? " ".(split("\\|", $arg))[0] : "")."\": $data"; + Log3 $name, 4, "YAMAHA_AVR ($name) - got response for \"$cmd".(defined($arg) ? " ".(split("\\|", $arg))[0] : "")."\": $data"; # add a dummy queue entry to wait a specific time before next command starts if($options->{wait_after_response})