From f2587fc1858ef5faf0f38ff6fa3c824d8208ee4e Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Mon, 3 Aug 2020 20:42:28 +0200 Subject: [PATCH] Comment out some excessively verbose debug. --- src/Router/Route.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Router/Route.php b/src/Router/Route.php index 7a74fcc..be6054d 100644 --- a/src/Router/Route.php +++ b/src/Router/Route.php @@ -132,11 +132,11 @@ class Route public function populateRoute(App $app): App { - $this->logger->debug(sprintf( + /*$this->logger->debug(sprintf( 'Router Populating: %s %s', $this->getHttpMethod(), $this->getRouterPattern() - )); + ));*/ if ($this->hasValidDomains() && !$this->isInContainedInValidDomains()) { return $app;