Remove debug logs

This commit is contained in:
Daniel Kluge
2023-11-01 22:10:10 +01:00
parent dacd278793
commit b27a71d92d
4 changed files with 2 additions and 14 deletions
-2
View File
@@ -46,8 +46,6 @@ export default class AIMCMapper {
...parsedPropConf
});
}
console.log(this.map)
}
}
}
+1 -1
View File
@@ -21,7 +21,7 @@ export default class FileImporter {
try {
return FileImporter.readAASByPath(file);
} catch (e) {
console.log(`Error while reading AAS from ${file}`, e);
console.error(`Error while reading AAS from ${file}`, e);
return null;
}
}).filter(aas => aas !== null) as types.Environment[];