Просмотр исходного кода

qcacld-3.0: Correct the logging type in csr_send_join_req_msg

Change the logging type from error to debug to show the
correct intent.

Change-Id: I80fea7afad723ff471aca83158df311cfbff9d50
CRs-Fixed: 2410867
Harprit Chhabada 6 лет назад
Родитель
Сommit
5cedd5898e
1 измененных файлов с 6 добавлено и 6 удалено
  1. 6 6
      core/sme/src/csr/csr_api_roam.c

+ 6 - 6
core/sme/src/csr/csr_api_roam.c

@@ -14857,12 +14857,12 @@ QDF_STATUS csr_send_join_req_msg(struct mac_context *mac, uint32_t sessionId,
 		}
 		qdf_mem_copy(&csr_join_req->selfMacAddr, &pSession->selfMacAddr,
 			     sizeof(tSirMacAddr));
-		sme_err("Connecting to ssid:%.*s bssid: "MAC_ADDRESS_STR" rssi: %d channel: %d country_code: %c%c",
-			csr_join_req->ssId.length, csr_join_req->ssId.ssId,
-			MAC_ADDR_ARRAY(pBssDescription->bssId),
-			pBssDescription->rssi, pBssDescription->channelId,
-			mac->scan.countryCodeCurrent[0],
-			mac->scan.countryCodeCurrent[1]);
+		sme_info("Connecting to ssid:%.*s bssid: "MAC_ADDRESS_STR" rssi: %d channel: %d country_code: %c%c",
+			 csr_join_req->ssId.length, csr_join_req->ssId.ssId,
+			 MAC_ADDR_ARRAY(pBssDescription->bssId),
+			 pBssDescription->rssi, pBssDescription->channelId,
+			 mac->scan.countryCodeCurrent[0],
+			 mac->scan.countryCodeCurrent[1]);
 		/* bsstype */
 		dw_tmp = csr_translate_bsstype_to_mac_type
 						(pProfile->BSSType);