I'm using play.api.Logger
to log in my Play application like:
import play.api.Logger
Logger.info("message to log")
By default this will use shell colors resulting in something like this
[[37minfo[0m] application - message to log
if the terminal you're using doesn't support colors.
Is there a way to tell Logger
to not use colors?