diff --git a/app/services/PeopleService.scala b/app/services/PeopleService.scala index 1349860..aff691a 100644 --- a/app/services/PeopleService.scala +++ b/app/services/PeopleService.scala @@ -39,7 +39,6 @@ class PeopleService @Inject()(configuration: Configuration, res = wsRes.status match { case Status.OK => val jsonResult = Json.parse(wsRes.body) - logger.debug(jsonResult.toString()) Right((jsonResult \ "data" \ "people").get.as[Seq[Person]]) case _ => logger.error(wsRes.body) Left(wsRes.body)