-
Color encoded log statements make up for lot of extra processing on each line output. Is it possible to disable color encoding and just pump out raw text based logs |
Beta Was this translation helpful? Give feedback.
Answered by
flarco
Jan 11, 2024
Replies: 1 comment
-
There is actually some legacy logic... Try settings env var |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ShahBinoy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is actually some legacy logic... Try settings env var
G_LOGGING=TASK
to disable color. Actually, alsoG_LOGGING=WORKER
outputs without color in JSON format. Forgot about those. Let me update the logic for the env var to something likeSLING_LOGGING = JSON | NO_COLOR | DEFAULT
in the next release.