diff --git a/server/endpoints/api/workspace/index.js b/server/endpoints/api/workspace/index.js index 9dd3fce7..e7ea17d0 100644 --- a/server/endpoints/api/workspace/index.js +++ b/server/endpoints/api/workspace/index.js @@ -533,6 +533,7 @@ function apiWorkspaceEndpoints(app) { }); response.status(200).json({ ...result }); } catch (e) { + console.log(e.message, e); response.status(500).json({ id: uuidv4(), type: "abort", @@ -655,7 +656,7 @@ function apiWorkspaceEndpoints(app) { }); response.end(); } catch (e) { - console.error(e); + console.log(e.message, e); writeResponseChunk(response, { id: uuidv4(), type: "abort",