From 2e7c927114c2cf7931905eaa9b0460bfcb8536ef Mon Sep 17 00:00:00 2001 From: garrettmills Date: Tue, 5 Apr 2022 12:39:33 -0500 Subject: [PATCH] Make route extraction account for extraneous / matches --- package.json | 2 +- src/http/routing/Route.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 1a7f586..2f358b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@extollo/lib", - "version": "0.9.30", + "version": "0.9.31", "description": "The framework library that lifts up your code.", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/src/http/routing/Route.ts b/src/http/routing/Route.ts index c1b82bb..292a624 100644 --- a/src/http/routing/Route.ts +++ b/src/http/routing/Route.ts @@ -275,11 +275,11 @@ export class Route(Logging) - .verbose(`Extracting route - (potential: ${potential}, rP: ${JSON.stringify(routeParts)}, pP: ${JSON.stringify(potentialParts)})`) + .trace(`Extracting route - (potential: ${potential}, rP: ${JSON.stringify(routeParts)}, pP: ${JSON.stringify(potentialParts)})`) const params: any = {} let wildcardIdx = 0