Fix redundant log

Signed-off-by: Rohan Sharma <rhnsharma5113@gmail.com>
This commit is contained in:
Rohan Sharma 2021-06-16 20:15:39 +05:30
parent bc37f398ef
commit cd00c7c73c
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ func (c *Controller) createExecutionSpace(cluster *v1alpha1.Cluster) error {
klog.Errorf("Failed to create execution space for cluster(%s): %v", cluster.Name, err)
return err
}
klog.V(2).Infof("Created execution space(%s) for cluster(%s).", executionSpace, cluster.Name)
klog.V(2).Infof("Created execution space(%s) for cluster(%s).", executionSpaceName, cluster.Name)
}
return nil