From eb3c99388d3f22ea777b6e52c5d6d08885b4c7d7 Mon Sep 17 00:00:00 2001 From: weihaoran <772343610@qq.com> Date: Thu, 5 Jun 2025 17:29:57 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90volcano=E3=80=91debug=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- component/ascend-for-volcano/common/util/util.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/component/ascend-for-volcano/common/util/util.go b/component/ascend-for-volcano/common/util/util.go index f416adeb7..a5be6d0e5 100644 --- a/component/ascend-for-volcano/common/util/util.go +++ b/component/ascend-for-volcano/common/util/util.go @@ -351,26 +351,22 @@ func GetActivePodUsedDevFromNode(nodeInfo *api.NodeInfo, devType string) []strin // GetAvailableDevInfo get available device info from device list func GetAvailableDevInfo(devList map[string]string) (string, []string) { availDevKey := HwPreName + GetDeviceType(devList) - klog.V(LogDebugLev).Infof("available device key: %s", availDevKey) availDevStr := devList[availDevKey] if len(availDevStr) == 0 { return availDevKey, []string{} } availDevList := strings.Split(availDevStr, ",") - klog.V(LogDebugLev).Infof("available device list: %v", availDevList) return availDevKey, availDevList } // GetUnhealthyDevInfo get unhealthy device info from device list func GetUnhealthyDevInfo(devList map[string]string) (string, []string) { unHealthyKey := HwPreName + GetDeviceType(devList) + "-Unhealthy" - klog.V(LogDebugLev).Infof("unhealthy device key: %s", unHealthyKey) unHealthyDevStr := devList[unHealthyKey] if len(unHealthyDevStr) == 0 { return unHealthyKey, []string{} } unHealthyDevList := strings.Split(unHealthyDevStr, ",") - klog.V(LogDebugLev).Infof("unhealthy device list: %v", unHealthyDevList) return unHealthyKey, unHealthyDevList } -- Gitee