diff --git a/src/open-telemetry/url-value-parser.service.ts b/src/open-telemetry/url-value-parser.service.ts index 074f956..002cd8e 100644 --- a/src/open-telemetry/url-value-parser.service.ts +++ b/src/open-telemetry/url-value-parser.service.ts @@ -28,7 +28,6 @@ export class UrlValueParserService { */ public replacePathValues(path: string, replacement: string = "#val"): string { const parseResult = this.parsePathValues(path); - console.log({ parseResult, path, replacement }); return ( "/" + parseResult.chunks @@ -58,7 +57,6 @@ export class UrlValueParserService { private isValue(str: string): boolean { for (let mask of REPLACE_MASKS) { if (str.match(mask)) { - console.log("isValue", { str, mask }); return true; } }