Explorar o código

print nats publish errors to log

Tobias von Dewitz %!s(int64=6) %!d(string=hai) anos
pai
achega
6069a4c6ee
Modificáronse 1 ficheiros con 3 adicións e 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)
+		}
 	}
 }