From 54d79e664d2bd69145fe4dc47daa7c87cda22f36 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Sun, 9 Jun 2019 15:57:40 -0700 Subject: [PATCH] Remove err.printStackTrace in MainLoop I added this for debugging and did not mean to leave it in. It causes massive walls of text to be printed sometimes when compilation fails. --- main/src/main/scala/sbt/MainLoop.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/main/src/main/scala/sbt/MainLoop.scala b/main/src/main/scala/sbt/MainLoop.scala index 8e9558a1b..b3e0f10b9 100644 --- a/main/src/main/scala/sbt/MainLoop.scala +++ b/main/src/main/scala/sbt/MainLoop.scala @@ -223,7 +223,6 @@ object MainLoop { } } catch { case err: Throwable => - err.printStackTrace() val errorEvent = ExecStatusEvent( "Error", channelName,