fix(api): remove unwanted debug log messages

This commit is contained in:
Julian Tölle 2022-07-07 17:18:54 +02:00
parent 12f94685ca
commit 2c8e8ef23c

View file

@ -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;
}
}