Parcourir la source

teams: removes print statement

bergquist il y a 8 ans
Parent
commit
3bb704144d
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. 0 1
      pkg/services/alerting/notifiers/teams.go

+ 0 - 1
pkg/services/alerting/notifiers/teams.go

@@ -111,7 +111,6 @@ func (this *TeamsNotifier) Notify(evalContext *alerting.EvalContext) error {
 	}
 
 	data, _ := json.Marshal(&body)
-	print(string(data))
 	cmd := &m.SendWebhookSync{Url: this.Url, Body: string(data)}
 
 	if err := bus.DispatchCtx(evalContext.Ctx, cmd); err != nil {