Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce number of default log message for proto to send #136

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 @@ -1114,7 +1114,7 @@ app_proto_res_e Proto_config_get_current_event_status(bool 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