Logging Verbosity of Network/Bluetooth Modules

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
forum_user
Posts: 4
Joined: Thu Jan 30, 2020 11:14 pm

Logging Verbosity of Network/Bluetooth Modules

Post by forum_user » Sat May 09, 2020 8:56 pm

Is it possible to change the logging verbosity of the network and ubluetooth modules? They log a lot of informational events to the console and I would like to hide them for my application.

Code: Select all

I (5944) phy: phy_version: 4180, cb3948e, Sep 12 2019, 16:39:13, 0, 0
I (5954) wifi:mode : sta ()
I (5954) wifi: STA_START
I (5954) wifi:mode : sta () + softAP ()
I (5954) wifi:Total power save buffer number: 16
I (5964) wifi:Init max length of beacon: 752/752
I (5964) wifi:Init max length of beacon: 752/752
I (5974) wifi:Total power save buffer number: 16
I (5974) network: event 14
I (5984) network: event 15
I (5984) network: event 14

Code: Select all

I (171284) BTDM_INIT: BT controller compile version [e989f20]
I (171294) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE
GAP procedure initiated: discovery; own_addr_type=0 filter_policy=0 passive=1 limited=0 filter_duplicates=0 duration=30000ms

Post Reply