summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshish Kumar Dhanotiya <adhanoti@codeaurora.org>2019-11-05 16:43:50 +0530
committerAshish Kumar Dhanotiya <adhanoti@codeaurora.org>2019-11-05 17:01:00 +0530
commitd263f808e074937056de3dffe74904832440fa5d (patch)
tree248f8cad8324ee2be9e8b9eda2197199817722f3
parentdadd0195236a553c1806e4ed8273918fc86f67ba (diff)
qcacmn: Reduce the log level for some apis
There are few apis for which some of the log levels are set to error and which results in excessive logging to the dmsg logs. To address above issue, reduce log levels for the functions which logs frequently. Change-Id: Ia94e493a5f5ae237c832b7d3fb8778c32e0f3bc9 CRs-Fixed: 2559538
-rw-r--r--wmi/src/wmi_unified_tlv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wmi/src/wmi_unified_tlv.c b/wmi/src/wmi_unified_tlv.c
index 52b1cb6f4b7b..687a2b23e57b 100644
--- a/wmi/src/wmi_unified_tlv.c
+++ b/wmi/src/wmi_unified_tlv.c
@@ -10999,7 +10999,7 @@ QDF_STATUS send_enable_specific_fw_logs_cmd_tlv(wmi_unified_t wmi_handle,
count = 0;
if (!wmi_handle->events_logs_list) {
- WMI_LOGE("%s: Not received event/log list from FW, yet",
+ WMI_LOGD("%s: Not received event/log list from FW, yet",
__func__);
return QDF_STATUS_E_NOMEM;
}
@@ -14255,7 +14255,7 @@ QDF_STATUS send_limit_off_chan_cmd_tlv(wmi_unified_t wmi_handle,
cmd->max_offchan_time = limit_off_chan_param->max_offchan_time;
cmd->rest_time = limit_off_chan_param->rest_time;
- WMI_LOGE("%s: vdev_id=%d, flags =%x, max_offchan_time=%d, rest_time=%d",
+ WMI_LOGD("%s: vdev_id=%d, flags =%x, max_offchan_time=%d, rest_time=%d",
__func__, cmd->vdev_id, cmd->flags, cmd->max_offchan_time,
cmd->rest_time);