Skip to content

Commit

Permalink
modules: wfa-qt: Log error string
Browse files Browse the repository at this point in the history
Displaying error message without reason is useless.

Signed-off-by: Chaitanya Tata <[email protected]>
  • Loading branch information
krish2718 authored and rlubos committed Jun 3, 2024
1 parent efa2cc4 commit 18b8c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/wfa-qt/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void qt_main(void)
if (service_socket >= 0) {
qt_eloop_run();
} else {
LOG_ERR("Failed to initiate the UDP socket");
LOG_ERR("Failed to initiate the UDP socket: %s", strerror(errno));
}

/* Stop eloop */
Expand Down

0 comments on commit 18b8c71

Please sign in to comment.