From 3341a96ce76694c4c997b4d6001998d311b49048 Mon Sep 17 00:00:00 2001 From: Eugenio Parodi Date: Sun, 6 Aug 2023 22:50:44 +0100 Subject: [PATCH] Support Warning messages in tailsession --- tools/tailSession.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/tailSession.sh b/tools/tailSession.sh index b7342f5b..5a8eed5c 100755 --- a/tools/tailSession.sh +++ b/tools/tailSession.sh @@ -29,5 +29,6 @@ while read -r line; do sed "s,/home.*/TermTk/,TermTk/," | sed "s,^\(INFO:\),${Green}\1${_RST_}," | sed "s,^\(ERROR:\),${Red}\1${_RST_}," | + sed "s,^\(WARNING:\),${Magenta}\1${_RST_}," | sed "s,^\(DEBUG:\),${Blue}\1${_RST_}," done < <(tail -F session.log) \ No newline at end of file