File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ void loop() {
97
97
int messageSize = mqttClient.parseMessage ();
98
98
if (messageSize) {
99
99
// we received a message, print out the topic and contents
100
- Serial.println (" Received a message with topic '" );
100
+ Serial.print (" Received a message with topic '" );
101
101
Serial.print (mqttClient.messageTopic ());
102
102
Serial.print (" ', length " );
103
103
Serial.print (messageSize);
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ void loop() {
89
89
int messageSize = mqttClient.parseMessage ();
90
90
if (messageSize) {
91
91
// we received a message, print out the topic and contents
92
- Serial.println (" Received a message with topic '" );
92
+ Serial.print (" Received a message with topic '" );
93
93
Serial.print (mqttClient.messageTopic ());
94
94
Serial.print (" ', length " );
95
95
Serial.print (messageSize);
You can’t perform that action at this time.
0 commit comments