Explorar el Código

print nats publish errors to log

Tobias von Dewitz hace 6 años
padre
commit
6069a4c6ee
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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)
+		}
 	}
 }