From 4d30329f06be1f4d7d12f75b8f1ba403465eb794 Mon Sep 17 00:00:00 2001 From: Arnaud Delcasse Date: Mon, 3 Apr 2023 20:33:58 +0200 Subject: [PATCH] remove painful log --- valhalla.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/valhalla.go b/valhalla.go index a41f30d..6f8479c 100644 --- a/valhalla.go +++ b/valhalla.go @@ -52,8 +52,6 @@ func (v *ValhallaRouting) Route(locations []orb.Point) (route *Route, err error) return nil, err } - log.Debug().Any("resp", resp).Msg("valhalla response") - if resp.Directions == nil || resp.Directions.Routes == nil || len(resp.Directions.Routes) < 1 { return nil, errors.New("no routes returned by valhalla") }