mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 13:11:02 +00:00
fix(api): remove unwanted debug log messages
This commit is contained in:
parent
12f94685ca
commit
2c8e8ef23c
1 changed files with 0 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue