add utils.log

This commit is contained in:
Christoph Polcin 2014-10-24 11:25:28 +02:00
parent 73f473fc51
commit 0e13808b71

View File

@ -13,6 +13,10 @@ import (
"time"
)
func log(msg interface{}) {
fmt.Println(msg)
}
func Error(r *http.Response) error {
return errors.New(fmt.Sprintf("%s - %s %s", r.Status, r.Request.Method, r.Request.URL.String()))
}