diff --git a/pkg/drivers/kic/kic.go b/pkg/drivers/kic/kic.go index 577df79283..6d9f716680 100644 --- a/pkg/drivers/kic/kic.go +++ b/pkg/drivers/kic/kic.go @@ -102,7 +102,7 @@ func (d *Driver) Create() error { if oci.IsCreatedByMinikube(d.OCIBinary, params.Name) { glog.Info("Found already existing abandoned minikube container, will try to delete.") if err := oci.DeleteContainer(d.OCIBinary, params.Name); err != nil { - glog.Errorf("Failed to delete a conflicting minikube container %s. You might need to restart your %s daemon and delete it manually and try again.", params.Name) + glog.Errorf("Failed to delete a conflicting minikube container %s. You might need to restart your %s daemon and delete it manually and try again.", params.Name, params.OCIBinary) return errors.Wrapf(err, "deleting already in-use mini-created container %s", params.Name) } } else {