Browse Source

print nats publish errors to log

Tobias von Dewitz 6 năm trước cách đây
mục cha
commit
6069a4c6ee
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      main.go

+ 3 - 1
main.go

@@ -261,7 +261,9 @@ func apacheLogCapture(logfile string) {
 			log.Printf("[%s] %s\n", request.Source, request.Url)
 		}
 
-		natsEC.Publish(config.NatsQueue, &request)
+		if err := natsEC.Publish(config.NatsQueue, &request); err != nil {
+			log.Println(err)
+		}
 	}
 }