Browse Source

Make rollbar func private

Volodymyr Tkach 2 years ago
parent
commit
97b7735300
3 changed files with 3 additions and 3 deletions
  1. 1 1
      utils/http/logger/logger.go
  2. 1 1
      utils/http/logger/rollbar.go
  3. 1 1
      utils/http/logger/writer.go

+ 1 - 1
utils/http/logger/logger.go

@@ -42,7 +42,7 @@ func LogRequests(handler http.Handler) http.Handler {
 			ua,
 		)
 		if RollBarEnabled {
-			if !RollBarSkipStatusCodes.Contain(nw.Status) {
+			if !RollBarSkipStatusCodes.contain(nw.Status) {
 				rollbar.Error(r, nw.Status, nw.Size, string(nw.Content))
 			}
 		}

+ 1 - 1
utils/http/logger/rollbar.go

@@ -14,7 +14,7 @@ var RollBarSkipStatusCodes = RollBarStatusCodes{
 	http.StatusMethodNotAllowed,
 }
 
-func (r RollBarStatusCodes) Contain(status int) bool {
+func (r RollBarStatusCodes) contain(status int) bool {
 	for _, v := range r {
 		if v == status {
 			return true

+ 1 - 1
utils/http/logger/writer.go

@@ -11,7 +11,7 @@ type ResponseWriter struct {
 
 func (w *ResponseWriter) Write(b []byte) (int, error) {
 	if RollBarEnabled {
-		if !RollBarSkipStatusCodes.Contain(w.Status) {
+		if !RollBarSkipStatusCodes.contain(w.Status) {
 			w.Content = append(w.Content, b...)
 		}
 	}