diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-05-22 15:02:12 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-05-22 15:02:12 -0400 |
commit | bce52652ceb54b325ac72cc9a173655ec0a80756 (patch) | |
tree | 3d4f44c1dd41d0f7301e9ec1e9ef510ef7b14ab5 /post.go | |
parent | 8e3bef29c6127b9ff33bb8d6f0481780f8a3568f (diff) | |
download | getwtxt-bce52652ceb54b325ac72cc9a173655ec0a80756.tar.gz |
tweaked error handling
Diffstat (limited to 'post.go')
-rw-r--r-- | post.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/post.go b/post.go index 4078cf6..103c254 100644 --- a/post.go +++ b/post.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "log" "net/http" "github.com/getwtxt/registry" @@ -58,5 +59,8 @@ func apiPostUser(w http.ResponseWriter, r *http.Request) { } log200(r) - _, _ = w.Write([]byte(fmt.Sprintf("200 OK\n"))) + _, err = w.Write([]byte(fmt.Sprintf("200 OK\n"))) + if err != nil { + log.Printf("%v\n", err) + } } |