qcacmn: Log QDF trace error/fatal messages using pr_err

Currently QDF trace error/fatal log messages are logged using
pr_info and bydefault these logs do not show up on console.
Hence log QDF trace error/fatal log messages using pr_err
such that bydefault these logs show up in console.

Change-Id: I220e5eb93ea21d01b948c40432179f294530ba0d
CRs-Fixed: 2070065
This commit is contained in:
Rajeev Kumar
2017-06-30 13:53:43 -07:00
committato da Anjaneedevi Kapparapu
parent eac514c1a9
commit 607d7cef03

Vedi File

@@ -297,7 +297,7 @@ static int wlan_add_user_log_radio_time_stamp(char *tbuf, size_t tbuf_sz,
#ifdef CONFIG_MCL
static inline void print_to_console(char *tbuf, char *to_be_sent)
{
pr_info("%s %s\n", tbuf, to_be_sent);
pr_err("%s %s\n", tbuf, to_be_sent);
}
#else
#define print_to_console(str1, str2)