I am using IntelliJ IDEA for Scala. When I write a block of Scala code, I build the project and execute it. At the bottom window of intellij you can see the code running.
In the output window below I will get a line of output that looks like:
18/03/27 15:07:31 INFO SparkContext: Created broadcast 132 from broadcast at LogisticRegression.scala:1879
All in RED text. There are hundreds of output lines in red text. I am only interested in seeing the white text. For example:
println("My white text")
How do I hide this information overkill in intellij? There is too much info in the output window at the bottom. Where are the options in intellij to curtail what is being output?
I understand this info will be useful if I am debugging and looking for answers as to why something isn't working. But for now, its completely in the way and annoying.
Any help would be great.