Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove debug log that can be problematic for non-blocking transport i…
…mplementations (#167) The debug-level log that is printed on not receiving any data from the network (when the first byte of an MQTT packet is attempted for reading) can be problematic when the transport interface TransportInterfaceRecv_t function is implemented in non-blocking behavior. The problem it will cause is overwhelming logging of the message when MQTT_ProcessLoop API is called with a non-zero timeout (or the API is called multiple times with zero timeout but within a loop until some data is achieved). Due to over-logging of this message, the DEBUG logging level configured build of the coreMQTT library will be non-valuable. This PR removes the problematic log statement.
- Loading branch information