Преглед изворни кода

clarify error message in Serial

Chris Mullins пре 8 година
родитељ
комит
db21ce2827
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lib/Udp/V6MiLightUdpServer.cpp

+ 1 - 1
lib/Udp/V6MiLightUdpServer.cpp

@@ -112,7 +112,7 @@ void V6MiLightUdpServer::sendResponse(uint16_t sessionId, uint8_t* responseBuffe
   }
   
   if (session == NULL || session->sessionId != sessionId) {
-    Serial.print("Tried to send response to untracked session id: ");
+    Serial.print("Received request with untracked session ID: ");
     Serial.println(sessionId);
     return;
   }