Commit 475651db authored by Simon Pastor's avatar Simon Pastor
Browse files

remove extra debug info

parent 4167f892
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -172,17 +172,14 @@ func processActiveScenarioUpdate() {
	// Update UE info
	ueNameList := sbi.activeModel.GetNodeNames("UE")
	for _, name := range ueNameList {
		log.Info("SIMON ", name)
		ueParent := sbi.activeModel.GetNodeParent(name)
		if poa, ok := ueParent.(*dataModel.NetworkLocation); ok {
			log.Info("SIMON poa ", poa.Name)
			apMacId := ""
			switch poa.Type_ {
			case mod.NodeTypePoaWifi:
				apMacId = poa.PoaWifiConfig.MacId
			}
			ue := (sbi.activeModel.GetNode(name)).(*dataModel.PhysicalLocation)
			log.Info("SIMON all", ue.MacId, "---", name, "---", apMacId)
			sbi.updateUeDataCB(name, ue.MacId, apMacId)
		}
	}
+1 −1
Original line number Diff line number Diff line
@@ -674,7 +674,7 @@ func populateStaInfo(key string, jsonInfo string, response interface{}) error {
		staInfo.ApAssociated = &apAssociated

		//TODO put a value in rssi that is coming from postGIS
		log.Info("SIMON RSSI")
		log.Info("TODO forced RSSI")
		staInfo.Rssi = 121

		resp.StaInfo = append(resp.StaInfo, staInfo)