Browse Source

RollBar: skip StatusTemporaryRedirect and StatusMethodNotAllowed errors

Volodymyr Tkach 2 years ago
parent
commit
1dda722b12
1 changed files with 8 additions and 2 deletions
  1. 8 2
      utils/http/logger/logger.go

+ 8 - 2
utils/http/logger/logger.go

@@ -19,7 +19,10 @@ type ResponseWriter struct {
 
 func (w *ResponseWriter) Write(b []byte) (int, error) {
 	if RollBarEnabled {
-		if !(w.Status == http.StatusOK || w.Status == http.StatusNotFound) {
+		if !(w.Status == http.StatusOK ||
+			w.Status == http.StatusTemporaryRedirect ||
+			w.Status == http.StatusNotFound ||
+			w.Status == http.StatusMethodNotAllowed) {
 			w.Content = append(w.Content, b...)
 		}
 	}
@@ -41,7 +44,10 @@ func LogRequests(handler http.Handler) http.Handler {
 		}
 		handler.ServeHTTP(nw, r)
 		if RollBarEnabled {
-			if !(nw.Status == http.StatusOK || nw.Status == http.StatusNotFound) {
+			if !(nw.Status == http.StatusOK ||
+				nw.Status == http.StatusTemporaryRedirect ||
+				nw.Status == http.StatusNotFound ||
+				nw.Status == http.StatusMethodNotAllowed) {
 				rollbar.Error(r, string(nw.Content))
 			}
 		}