I am implementing a simple REST service using the Play Framework and sbt as my build tool. When I execute sbt run
and start my server, I see some strange logging that I do not understand: <-[2k
. I was hoping somebody could tell me what is causing it or how to turn it off.
Asked
Active
Viewed 35 times
0

Stefan
- 160
- 6
-
3you need to disable color output in sbt. See this [question](https://stackoverflow.com/questions/4267014/how-can-colored-terminal-output-be-disabled-for-sbt-play). `sbt -no-colors run` should do the trick – Ivan Stanislavciuc Mar 08 '21 at 16:17
-
I ran `sbt -no-colors run` and all that 2k stuff disappeared. Thank you. – Stefan Mar 08 '21 at 16:19