in main/vmWatch.go [65:76]
func (r *VMWatchResult) GetMessage() string {
switch r.Status {
case Disabled:
return "VMWatch is disabled"
case Failed:
return fmt.Sprintf("VMWatch failed: %v", r.Error)
case NotRunning:
return "VMWatch is not running"
default:
return "VMWatch is running"
}
}