Exemple #1
0
func (m *jsonMessage) fromResult(r api.Result) {
	if r == nil {
		m.State = StateChanged
	} else {
		m.Message, m.Importance = r.Info()
		if r.Error() != nil {
			m.Error = r.Error().Error()
		}
		m.State = StateResult
	}
}