Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/wpc_proto/internal_modules/proto_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ static void onStackStatusReceived(uint8_t status)
}
else
{
LOGI("Msg size %d\n", stream.bytes_written);
LOGD("Msg size %d\n", stream.bytes_written);
if (m_onProtoEventStatus_cb != NULL)
{
m_onProtoEventStatus_cb(encoded_message_p, stream.bytes_written);
Expand Down Expand Up @@ -1115,7 +1115,7 @@ app_proto_res_e Proto_config_get_current_event_status(bool gw_online,
return APP_RES_PROTO_CANNOT_GENERATE_RESPONSE;
}

LOGI("Msg size %d\n", stream.bytes_written);
LOGD("Msg size %d\n", stream.bytes_written);
*event_status_size_p = stream.bytes_written;
return APP_RES_PROTO_OK;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/wpc_proto/internal_modules/proto_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static bool onDataReceived(const uint8_t * bytes,
}
else
{
LOGI("Msg size %d\n", stream.bytes_written);
LOGD("Msg size %d\n", stream.bytes_written);
if (m_rx_event_cb != NULL)
{
m_rx_event_cb(encoded_message_p, stream.bytes_written,
Expand Down