Skip to content

Commit

Permalink
Change cblogger.Error to cblogger.Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
innodreamer committed Jul 11, 2024
1 parent 90371bb commit 9c2b2e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (vmHandler *NcpVMHandler) StartVM(vmReqInfo irs.VMReqInfo) (irs.VMInfo, err
// Check whether the VM name exists. Search by instanceName converted to lowercase
vmId, err := vmHandler.GetVmIdByName(instanceName)
if err != nil {
cblogger.Error("The VM with the name is not exists : " + instanceName)
cblogger.Debug("The VM with the name does not exists : " + instanceName)
// return irs.VMInfo{}, err //Caution!!
}
if vmId != "" {
Expand Down

0 comments on commit 9c2b2e7

Please sign in to comment.