From 67d4ef3672bc416331a3edda821851ea9a32cd57 Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Thu, 7 May 2020 21:40:26 +0200 Subject: [PATCH] Do not cut off the bottom of large stack traces --- project/Build.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/Build.scala b/project/Build.scala index 157cd99dff47..43cc3004af9f 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -215,7 +215,8 @@ object Build { case Some(prop) => List("-Xmx" + prop) case _ => List() } - agentOptions ::: ciOptions + // Do not cut off the bottom of large stack traces (default is 1024) + "-XX:MaxJavaStackTraceDepth=1000000" :: agentOptions ::: ciOptions } )