diff --git a/backend/handlers/error.js b/backend/handlers/error.js index 4982dc0ba..a9ed0f85c 100644 --- a/backend/handlers/error.js +++ b/backend/handlers/error.js @@ -20,6 +20,7 @@ class MonkeyError { : String(message); } else { if (this.stack && this.status >= 500) { + this.stack = this.message + "\n" + this.stack; this.message = "Internal Server Error " + this.errorID; } else { this.message = String(message);