Parcourir la source

more nginx tracing

Tobias von Dewitz il y a 6 ans
Parent
commit
b6a8f5c11e
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      main.go

+ 4 - 0
main.go

@@ -288,6 +288,10 @@ func nginxLogCapture(logfile, format string) {
 
 		xff, err := logEntry.Field("http_x_forwarded_for")
 		if err != nil && xff != "" {
+			if config.Trace {
+				log.Printf("Using XFF: %s\n", xff)
+			}
+
 			remote = xff
 		}