From febd4d6e0914df06f96d6789625fd9ed2d6a0fc0 Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Thu, 23 Jul 2020 06:53:01 +0000 Subject: [PATCH] Comment out the error_log for header longitude and latitude. #424 --- src/Service/RiderAPIHandler/CMBRiderAPIHandler.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Service/RiderAPIHandler/CMBRiderAPIHandler.php b/src/Service/RiderAPIHandler/CMBRiderAPIHandler.php index ef87523f..3dd1b8e6 100644 --- a/src/Service/RiderAPIHandler/CMBRiderAPIHandler.php +++ b/src/Service/RiderAPIHandler/CMBRiderAPIHandler.php @@ -2439,7 +2439,9 @@ class CMBRiderAPIHandler implements RiderAPIHandlerInterface $x_lng = $req->headers->get('x-longitude'); $x_lat = $req->headers->get('x-latitude'); - error_log('rider_longitude ' . $x_lng); - error_log('rider_latitude ' . $x_lat); + // TODO: this is still unfinished + + //error_log('rider_longitude ' . $x_lng); + //error_log('rider_latitude ' . $x_lat); } }