Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 42ad57e8 authored by Ayush Singh's avatar Ayush Singh
Browse files

Remove useless logs


Signed-off-by: default avatarAyush Singh <ayushdevel1325@gmail.com>
parent 5aa5ace2
Branches
1 merge request!4WIP: Make cc1352 greybus node
......@@ -19,7 +19,7 @@ static uint8_t gb_connection_process(struct gb_connection *conn)
uint8_t count = 0;
struct gb_message *msg;
LOG_DBG("Trying to read from Intf %u, Cport %u", conn->inf_ap->id, conn->ap_cport_id);
// LOG_DBG("Trying to read from Intf %u, Cport %u", conn->inf_ap->id, conn->ap_cport_id);
msg = conn->inf_ap->controller.read(&conn->inf_ap->controller, conn->ap_cport_id);
if (msg) {
conn->inf_peer->controller.write(&conn->inf_peer->controller, msg,
......@@ -30,7 +30,7 @@ static uint8_t gb_connection_process(struct gb_connection *conn)
conn->peer_cport_id);
}
LOG_DBG("Trying to read from Intf %u, Cport %u", conn->inf_peer->id, conn->peer_cport_id);
// LOG_DBG("Trying to read from Intf %u, Cport %u", conn->inf_peer->id, conn->peer_cport_id);
msg = conn->inf_peer->controller.read(&conn->inf_peer->controller, conn->peer_cport_id);
if (msg) {
conn->inf_ap->controller.write(&conn->inf_ap->controller, msg, conn->ap_cport_id);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment