diff --git a/agent-go/executor/K8sFunction.go b/agent-go/executor/K8sFunction.go index 4dc22f6..9b140f0 100644 --- a/agent-go/executor/K8sFunction.go +++ b/agent-go/executor/K8sFunction.go @@ -145,10 +145,10 @@ func K8sCheckPVCStatusTimeOut(specificPvcName string, supreme string, waitTimeOu } if pvc.Status.Phase == corev1.ClaimBound { - log.DebugF("K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s is running", specificPvcName, supreme) + log.DebugF("[K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s is running", specificPvcName, supreme) return true } else { - log.WarnF("K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s run failed !", specificPvcName, supreme) + log.WarnF("[K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s run failed !", specificPvcName, supreme) return false } }