SmartThingsCommunity / st-device-sdk-c

SmartThings SDK for Direct Connected Devices for C
Other
118 stars 126 forks source link

Debug msg fix in es_msg_parser #87

Closed toddaustin07 closed 3 years ago

toddaustin07 commented 3 years ago

Line 176 should be changed from:

IOT_DEBUG("payload : %s", payload);

to:

IOT_DEBUG("payload : %s", *payload);
Kwang-Hui commented 3 years ago

Thanks for the report. This will be fixed on next release.