Skip to content

Commit

Permalink
Merge pull request #4343 from josedonizetti/fix-kvm-remove-warn-message
Browse files Browse the repository at this point in the history
Fix kvm remove warn message
  • Loading branch information
tstromberg authored May 24, 2019
2 parents 2f0ee32 + 81f0d9b commit 57db32a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/drivers/kvm/kvm.go
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ func (d *Driver) Remove() error {
log.Debug("Checking if the domain needs to be deleted")
dom, err := conn.LookupDomainByName(d.MachineName)
if err != nil {
log.Warn("Domain %s does not exist, nothing to clean up...", d.MachineName)
log.Warnf("Domain %s does not exist, nothing to clean up...", d.MachineName)
}
if dom != nil {
log.Infof("Domain %s exists, removing...", d.MachineName)
Expand Down

0 comments on commit 57db32a

Please sign in to comment.