Search found 2 matches

by KevinLowe
Thu Jun 22, 2017 3:44 am
Forum: ESP-IDF
Topic: how to stop wifi console log output
Replies: 2
Views: 8161

Re: how to stop wifi console log output

#include "esp_log.h"
esp_log_level_set("wifi", ESP_LOG_WARN);


OK,it does work.Thanks!
by KevinLowe
Thu Jun 22, 2017 2:14 am
Forum: ESP-IDF
Topic: how to stop wifi console log output
Replies: 2
Views: 8161

how to stop wifi console log output

After connecting to wifi,the serial output this log "I (5794127) wifi: n:6 0, o:6 1, ap:255 255, sta:6 0, prof:6" frequently(5794127 is timestamp and diffrent in each info). I want to stop this info output but also keep other info remain,where should I modify in code?