Merge branch 'master' into feature/status_updates

pull/258/head
Hunter Long 2019-10-15 08:47:15 -07:00 committed by GitHub
commit a3ef0bc016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,8 @@ func (u *lineNotifier) OnSuccess(s *types.Service) {
// OnSave triggers when this notifier has been saved // OnSave triggers when this notifier has been saved
func (u *lineNotifier) OnSave() error { func (u *lineNotifier) OnSave() error {
utils.Log(1, fmt.Sprintf("Notification %v is receiving updated information.", u.Method)) msg := fmt.Sprintf("Notification %v is receiving updated information.", u.Method)
// Do updating stuff here utils.Log(1, msg)
u.AddQueue("saved", message)
return nil return nil
} }