[
https://issues.apache.org/jira/browse/AIRFLOW-6404?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
ohad updated AIRFLOW-6404:
--------------------------
Description:
Add ANSI color support in order to present colored logs in the airflow webUI
{code:java}
ESC [ 0 m # reset all (colors and brightness)
# FOREGROUND:
ESC [ 30 m # black
ESC [ 31 m # red
ESC [ 32 m # green
ESC [ 33 m # yellow
ESC [ 34 m # blue
ESC [ 35 m # magenta
ESC [ 36 m # cyan
ESC [ 37 m # white
# BACKGROUND
ESC [ 40 m # black
ESC [ 41 m # red
ESC [ 42 m # green
ESC [ 43 m # yellow
ESC [ 44 m # blue
ESC [ 45 m # magenta
ESC [ 46 m # cyan
ESC [ 47 m # white
{code}
was:
Add ANSI color support in order to present colored logs in the airflow webUI
{code:java}
ESC [ 0 m # reset all (colors and brightness)
# FOREGROUND:
ESC [ 30 m # black
ESC [ 31 m # red
ESC [ 32 m # green
ESC [ 33 m # yellow
ESC [ 34 m # blue
ESC [ 35 m # magenta
ESC [ 36 m # cyan
ESC [ 37 m # white
ESC [ 39 m # reset
# BACKGROUND
ESC [ 40 m # black
ESC [ 41 m # red
ESC [ 42 m # green
ESC [ 43 m # yellow
ESC [ 44 m # blue
ESC [ 45 m # magenta
ESC [ 46 m # cyan
ESC [ 47 m # white
ESC [ 49 m # reset{code}
> Add ANSI color support
> ----------------------
>
> Key: AIRFLOW-6404
> URL: https://issues.apache.org/jira/browse/AIRFLOW-6404
> Project: Apache Airflow
> Issue Type: New Feature
> Components: logging, ui
> Affects Versions: 1.10.7
> Reporter: ohad
> Assignee: ohad
> Priority: Trivial
> Labels: Color, logger
> Fix For: 1.10.8
>
>
> Add ANSI color support in order to present colored logs in the airflow webUI
> {code:java}
> ESC [ 0 m # reset all (colors and brightness)
> # FOREGROUND:
> ESC [ 30 m # black
> ESC [ 31 m # red
> ESC [ 32 m # green
> ESC [ 33 m # yellow
> ESC [ 34 m # blue
> ESC [ 35 m # magenta
> ESC [ 36 m # cyan
> ESC [ 37 m # white
> # BACKGROUND
> ESC [ 40 m # black
> ESC [ 41 m # red
> ESC [ 42 m # green
> ESC [ 43 m # yellow
> ESC [ 44 m # blue
> ESC [ 45 m # magenta
> ESC [ 46 m # cyan
> ESC [ 47 m # white
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)