From a5813dc8e844530c00eb431c37ed27a30fdb82da Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 10 Jan 2019 09:07:12 +0000 Subject: [PATCH] Change logging level of invalid commands. --- RemoteControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RemoteControl.cpp b/RemoteControl.cpp index c98d617..567980d 100644 --- a/RemoteControl.cpp +++ b/RemoteControl.cpp @@ -65,7 +65,7 @@ REMOTE_COMMAND CRemoteControl::getCommand() command = RCD_MODE_NXDN; if (command == RCD_NONE) - LogMessage("Invalid remote command of \"%s\" received"); + LogWarning("Invalid remote command of \"%s\" received"); else LogMessage("Valid remote command of \"%s\" received"); }