diff --git a/server/endpoints/api/workspace/index.js b/server/endpoints/api/workspace/index.js
index 9dd3fce70ae8a1a205e7ec7356706e4b1c91ebe0..e7ea17d0ae6025cab30f8b207ea02fed39405c06 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",