Fix for log level + Turned down level to decrease spam

This commit is contained in:
kimocoder 2019-11-14 22:16:02 +01:00
parent ac21373745
commit 55484785cc
2 changed files with 4 additions and 8 deletions

View File

@ -79,10 +79,10 @@ CONFIG_RTW_WIFI_HAL = n
CONFIG_ICMP_VOQ = n CONFIG_ICMP_VOQ = n
CONFIG_IP_R_MONITOR = n #arp VOQ and high rate CONFIG_IP_R_MONITOR = n #arp VOQ and high rate
########################## Debug ########################### ########################## Debug ###########################
CONFIG_RTW_DEBUG = y CONFIG_RTW_DEBUG = n
# default log level is _DRV_INFO_ = 4, # default log level is _DRV_INFO_ = 4,
# please refer to "How_to_set_driver_debug_log_level.doc" to set the available level. # please refer to "How_to_set_driver_debug_log_level.doc" to set the available level.
CONFIG_RTW_LOG_LEVEL = 4 CONFIG_RTW_LOG_LEVEL = 2
######################## Wake On Lan ########################## ######################## Wake On Lan ##########################
CONFIG_WOWLAN = n CONFIG_WOWLAN = n
#bit2: deauth, bit1: unicast, bit0: magic pkt. #bit2: deauth, bit1: unicast, bit0: magic pkt.

View File

@ -115,13 +115,9 @@ module_param(rtw_dynamic_agg_enable, int, 0644);
* please refer to "How_to_set_driver_debug_log_level.doc" to set the available level. * please refer to "How_to_set_driver_debug_log_level.doc" to set the available level.
*/ */
#ifdef CONFIG_RTW_DEBUG #ifdef CONFIG_RTW_DEBUG
#ifdef RTW_LOG_LEVEL uint rtw_drv_log_level = _DRV_NONE_;
uint rtw_drv_log_level = (uint)RTW_LOG_LEVEL; /* from Makefile */
#else
uint rtw_drv_log_level = _DRV_INFO_;
#endif
module_param(rtw_drv_log_level, uint, 0644); module_param(rtw_drv_log_level, uint, 0644);
MODULE_PARM_DESC(rtw_drv_log_level, "set log level when insert driver module, default log level is _DRV_INFO_ = 4"); MODULE_PARM_DESC(rtw_drv_log_level, "set log level when insert driver module, default log level is _DRV_NONE_ = 0");
#endif #endif
int rtw_radio_enable = 1; int rtw_radio_enable = 1;
int rtw_long_retry_lmt = 7; int rtw_long_retry_lmt = 7;