improved error loggin and updated imports to fix build failure

This commit is contained in:
2024-06-19 15:06:28 +01:00
parent d01179c724
commit be99db0774
78 changed files with 319 additions and 325 deletions
+3 -5
View File
@@ -23,13 +23,11 @@ ApiProxy.get(async (req, res) => {
if (hashAPIPath(checkquerypath) == "&hash=" + checkHash) {
await createContainer(containerName)
.then((data) => {
//console.log("has response:", data);
return res.status(200).json({ data: "success" });
})
.catch((err) => {
console.log(err);
console.log(consoleLogger(err));
res.status(400).json(err);
.catch((error) => {
consoleLogger(error);
res.status(400).json(error);
});
} else {
return res.status(400).json();