Skip to content

Commit

Permalink
sample: wifi: Update print statement
Browse files Browse the repository at this point in the history
Improve log message for enhanced context.

SHEL-2448

Signed-off-by: Triveni Danda <[email protected]>
  • Loading branch information
D-Triveni authored and cvinayak committed Feb 28, 2024
1 parent d445518 commit 0fa5ecf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/wifi/raw_tx_packet/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ static void wifi_send_raw_tx_packets(void)
}
}

LOG_INF("Sent %d packets with %d failures", num_pkts, num_failures);
LOG_INF("Sent %d packets with %d failures on socket", num_pkts, num_failures);

/* close the socket */
close(sockfd);
Expand Down
2 changes: 1 addition & 1 deletion samples/wifi/shell/src/wifi_raw_tx_pkt_shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static void send_packet(const char *transmission_mode,
k_msleep(delay);
}

LOG_INF("Sent %d packets with %d failures", num_pkts, num_failures);
LOG_INF("Sent %d packets with %d failures on socket", num_pkts, num_failures);
close(sockfd);
free(test_frame);
}
Expand Down

0 comments on commit 0fa5ecf

Please sign in to comment.