Skip to content

Commit 6e72bf4

Browse files
committed
less verbose cyw driver
1 parent 710e7b2 commit 6e72bf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mongoose.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21663,7 +21663,7 @@ static void cyw_handle_bdc_evnt(struct bdc_hdr *bdc, size_t len) {
2166321663
uint32_t status = mg_ntohl(msg->event.status);
2166421664
uint32_t reason = mg_ntohl(msg->event.reason);
2166521665
uint16_t flags = mg_ntohs(msg->event.flags);
21666-
MG_DEBUG(("BCM event %lu %lu %lu %p", event_type, status, reason, flags));
21666+
MG_VERBOSE(("BCM evt %lu %lu %lu %p", event_type, status, reason, flags));
2166721667
if (event_type == 16 && status == 0) { // Link
2166821668
s_link = flags & 1;
2166921669
} else if (event_type == 46 && s_link) { // PSK sup with link up

src/drivers/cyw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ static void cyw_handle_bdc_evnt(struct bdc_hdr *bdc, size_t len) {
293293
uint32_t status = mg_ntohl(msg->event.status);
294294
uint32_t reason = mg_ntohl(msg->event.reason);
295295
uint16_t flags = mg_ntohs(msg->event.flags);
296-
MG_DEBUG(("BCM event %lu %lu %lu %p", event_type, status, reason, flags));
296+
MG_VERBOSE(("BCM evt %lu %lu %lu %p", event_type, status, reason, flags));
297297
if (event_type == 16 && status == 0) { // Link
298298
s_link = flags & 1;
299299
} else if (event_type == 46 && s_link) { // PSK sup with link up

0 commit comments

Comments
 (0)