qcacld-3.0: Change log level to info to print disconnect reason from UI

If the disconnect is triggered from the user space then print those
logs in kmsg.
Change the log level from hdd_debug() to hdd_info().

Change-Id: I72839e33a69e7bdf07471cbfe7f6f9b6144ace90
CRs-Fixed: 2014745
diff --git a/core/hdd/src/wlan_hdd_cfg80211.c b/core/hdd/src/wlan_hdd_cfg80211.c
index ea8a978..60ff70d 100644
--- a/core/hdd/src/wlan_hdd_cfg80211.c
+++ b/core/hdd/src/wlan_hdd_cfg80211.c
@@ -14510,8 +14510,6 @@
 			reasonCode = eCSR_DISCONNECT_REASON_UNSPECIFIED;
 			break;
 		}
-		hdd_debug("convert to internal reason %d to reasonCode %d",
-			reason, reasonCode);
 		pScanInfo = &pAdapter->scan_info;
 		if (pScanInfo->mScanPending) {
 			hdd_debug("Disconnect is in progress, Aborting Scan");
@@ -14540,10 +14538,8 @@
 			}
 		}
 #endif
-		hdd_debug("Disconnecting with reasoncode:%u",
-		       reasonCode);
-		hdd_debug("Disconnect request from user space with reason: %s",
-			hdd_ieee80211_reason_code_to_str(reason));
+		hdd_info("Disconnect request from user space with reason: %d (%s) internal reason code: %d",
+			reason, hdd_ieee80211_reason_code_to_str(reason), reasonCode);
 		status = wlan_hdd_disconnect(pAdapter, reasonCode);
 		if (0 != status) {
 			hdd_err("wlan_hdd_disconnect failed, status: %d", status);