feat(sourcemaps-reader): changed logging

This commit is contained in:
Taha Yassine Kraiem 2022-10-20 18:20:06 +02:00
parent daa3e51511
commit c08e88a0a1

View file

@ -9,7 +9,7 @@ router.post('/', (req, res) => {
});
req.on('end', function () {
data = JSON.parse(data);
console.log("[SR] Starting parser for: " + data.key);
console.log(`[SR] Starting parser for ${data.isURL ? "URL: " : "file: "}${data.key}`);
// process.env = {...process.env, ...data.bucket_config};
handler.sourcemapReader(data)
.then((results) => {