remove logging from notifier

pull/78/head
Hunter Long 2018-09-15 15:24:34 -07:00
parent f144b8cec1
commit 4018904ac1
1 changed files with 2 additions and 3 deletions

View File

@ -21,7 +21,6 @@ import (
"github.com/hunterlong/statup/core/notifier"
"github.com/hunterlong/statup/types"
"github.com/hunterlong/statup/utils"
"io/ioutil"
"net/http"
"text/template"
"time"
@ -90,8 +89,8 @@ func (u *Slack) Send(msg interface{}) error {
return err
}
defer res.Body.Close()
contents, _ := ioutil.ReadAll(res.Body)
fmt.Println(string(contents))
//contents, _ := ioutil.ReadAll(res.Body)
//fmt.Println(string(contents))
return nil
}