qcacmn: Reduce log level in 6Ghz regulatory API

Reduce log level in reg_is_6ghz_psc_chan_freq.

Change-Id: If451c702cbbf7ef559bd486ac8dbd6095a74ea58
CRs-Fixed: 2544230
diff --git a/umac/regulatory/core/src/reg_services_common.c b/umac/regulatory/core/src/reg_services_common.c
index 17ad8a4..1c2d2c5 100644
--- a/umac/regulatory/core/src/reg_services_common.c
+++ b/umac/regulatory/core/src/reg_services_common.c
@@ -2354,7 +2354,7 @@
 	uint8_t count;
 
 	if (!REG_IS_6GHZ_FREQ(freq)) {
-		reg_err(" Channel frequency is not a 6GHz frequency");
+		reg_debug(" Channel frequency is not a 6GHz frequency");
 		return false;
 	}
 	for (count = 1; count <= NUM_PSC_FREQ; count++) {
@@ -2363,7 +2363,7 @@
 		    (FREQ_TO_CHAN_SCALE * NUM_80MHZ_BAND_IN_6G)))
 			return true;
 	}
-	reg_err(" Channel frequency is not a 6GHz PSC frequency");
+	reg_debug(" Channel frequency is not a 6GHz PSC frequency");
 
 	return false;
 }