2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-15 22:26:04 +00:00

46_TRX_LIGHT.pm: Adjusted loglevel of some messages

git-svn-id: https://svn.fhem.de/fhem/trunk@19062 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
KernSani 2019-03-29 14:44:08 +00:00
parent c3c4059e0c
commit 4c03ea55be

View File

@ -306,11 +306,11 @@ sub TRX_LIGHT_Set($@) {
}
if ( $l =~ /^[on|off]$/ ) {
Log3 $name, 1, "TRX_LIGHT_Set() using setExtensions";
Log3 $name, 5, "TRX_LIGHT_Set() using setExtensions";
return SetExtensions( $hash, $l, $name, @a );
}
else {
Log3 $name, 1, "TRX_LIGHT_Set() NOT using setExtensions";
Log3 $name, 5, "TRX_LIGHT_Set() NOT using setExtensions for command $command";
return "Unknown command $command, choose one of $l";
}
}