File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ private function serializeRouteCollection(RouteCollection $collection): array {
7474 * @return array
7575 */
7676 public function findMatchingRoute (string $ url ): array {
77- $ this ->eventLogger ->start ('cacheroute:match ' );
77+ $ this ->eventLogger ->start ('cacheroute:match ' , ' Match route ' );
7878 $ key = $ this ->context ->getHost () . '# ' . $ this ->context ->getBaseUrl () . '#rootCollection ' ;
7979 $ cachedRoutes = $ this ->cache ->get ($ key );
8080 if (!$ cachedRoutes ) {
@@ -83,7 +83,7 @@ public function findMatchingRoute(string $url): array {
8383 $ this ->cache ->set ($ key , $ cachedRoutes , 3600 );
8484 }
8585 $ matcher = new CompiledUrlMatcher ($ cachedRoutes , $ this ->context );
86- $ this ->eventLogger ->start ('cacheroute:url:match ' );
86+ $ this ->eventLogger ->start ('cacheroute:url:match ' , ' Symfony URL match call ' );
8787 try {
8888 $ parameters = $ matcher ->match ($ url );
8989 } catch (ResourceNotFoundException $ e ) {
You can’t perform that action at this time.
0 commit comments