about summary refs log tree commit diff
path: root/contrib
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2019-12-07 01:42:33 +0100
committerAlexander Barton <alex@barton.de>2019-12-07 01:42:33 +0100
commit1f69f1d0abe8fade4dd3e968220ea6309598c3b3 (patch)
tree3f0d83ea94e70f55fae238ef161d0a28ad44c910 /contrib
parentb03fcaab5aaa07d943561dca6948358f9dc51d4c (diff)
downloadngircd-1f69f1d0abe8fade4dd3e968220ea6309598c3b3.tar.gz
ngircd-1f69f1d0abe8fade4dd3e968220ea6309598c3b3.zip
contrib/nglog.sh: Use bright colors for warning & error messages
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/nglog.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/nglog.sh b/contrib/nglog.sh
index 001570a5..c96f993a 100755
--- a/contrib/nglog.sh
+++ b/contrib/nglog.sh
@@ -15,11 +15,11 @@
 #
 
 awk '
-  /^\[[[:digit:]]+:0 / {print "\033[95m" $0 "\033[0m"}
-  /^\[[[:digit:]]+:1 / {print "\033[35m" $0 "\033[0m"}
-  /^\[[[:digit:]]+:2 / {print "\033[91m" $0 "\033[0m"}
-  /^\[[[:digit:]]+:3 / {print "\033[31m" $0 "\033[0m"}
-  /^\[[[:digit:]]+:4 / {print "\033[33m" $0 "\033[0m"}
+  /^\[[[:digit:]]+:0 / {print "\033[1;95m" $0 "\033[0m"}
+  /^\[[[:digit:]]+:1 / {print "\033[1;35m" $0 "\033[0m"}
+  /^\[[[:digit:]]+:2 / {print "\033[1;91m" $0 "\033[0m"}
+  /^\[[[:digit:]]+:3 / {print "\033[1;31m" $0 "\033[0m"}
+  /^\[[[:digit:]]+:4 / {print "\033[1;33m" $0 "\033[0m"}
   /^\[[[:digit:]]+:5 / {print "\033[1m" $0 "\033[0m"}
   /^\[[[:digit:]]+:6 / {print $0}
   /^\[[[:digit:]]+:7 / {print "\033[90m" $0 "\033[0m"}