Ajout d'un log pour afficher la liste des chemins récupérés dans la fonction get_path_list

This commit is contained in:
2025-04-03 13:41:25 +02:00
parent 99fb5331ed
commit 44d846b01c

View File

@@ -150,6 +150,9 @@ const measurement = {
const path = await this.get_path_from_id(projectId, orderId); const path = await this.get_path_from_id(projectId, orderId);
pathList.push(path); pathList.push(path);
} }
console.log("[FILE] get_path_list : " + pathList);
return pathList; return pathList;
}, },
} }