How to disable coloring in an app (not SBT) #492
-
Hi,
any idea how I can disable the coloring? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The easiest way is: scribe.output.format.OutputFormat.default = scribe.output.format.ASCIIOutputFormat You can also set the environment value |
Beta Was this translation helpful? Give feedback.
-
That's perfect thanks @darkfrog26 ! We are running a Spark job on a cluster that somehow (Netflix's platform does it) dumps the stdout and stderr into files. |
Beta Was this translation helpful? Give feedback.
-
On JVM I generally just look to see if the |
Beta Was this translation helpful? Give feedback.
The easiest way is:
You can also set the environment value
SCRIBE_OUTPUT_FORMAT
to "ASCII". Scribe attempts to auto-detect if ANSI is supported. Can you give me more information about your set up and why ANSI isn't supported?