diff --git a/server/lib/rethrown-error.js b/server/lib/rethrown-error.js index 85ca8a8..0de9b52 100644 --- a/server/lib/rethrown-error.js +++ b/server/lib/rethrown-error.js @@ -38,7 +38,6 @@ class RethrownError extends ExtendedError { // number of `\n` and `+ 1` for the first line because it doesn't start with // new line. const messageLines = (this.message.match(/\n/g) || []).length + 1; - console.log('messageLines', messageLines); const indentedOriginalError = error.stack .split('\n')