Browse Source

Optimization

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

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

@@ -41,10 +41,8 @@ func LogRequests(handler http.Handler) http.Handler {
 			time.Since(start).Seconds(),
 			ua,
 		)
-		if RollBarEnabled {
-			if !RollBarSkipStatusCodes.contain(nw.Status) {
-				rollbar.Error(r, nw.Status, nw.Size, string(nw.Content))
-			}
+		if RollBarEnabled && !RollBarSkipStatusCodes.contain(nw.Status) {
+			rollbar.Error(r, nw.Status, nw.Size, string(nw.Content))
 		}
 	})
 }

+ 2 - 4
utils/http/logger/writer.go

@@ -10,10 +10,8 @@ type ResponseWriter struct {
 }
 
 func (w *ResponseWriter) Write(b []byte) (int, error) {
-	if RollBarEnabled {
-		if !RollBarSkipStatusCodes.contain(w.Status) {
-			w.Content = append(w.Content, b...)
-		}
+	if RollBarEnabled && !RollBarSkipStatusCodes.contain(w.Status) {
+		w.Content = append(w.Content, b...)
 	}
 	size, err := w.ResponseWriter.Write(b)
 	w.Size += size