1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

logs: user to default bold

With light-on-dark terminal color schemes, 'black bold' (i.e. [30;1m) for
LLL_USER is illegible. I think this would be better as 'default bold' (i.e. [0;1m)
This commit is contained in:
Chris Hiszpanski 2019-12-29 00:55:48 +00:00 committed by Andy Green
parent 22a6a0073d
commit 2236859188

View file

@ -124,7 +124,7 @@ static const char * const colours[] = {
"[33m", /* LLL_EXT */
"[33m", /* LLL_CLIENT */
"[33;1m", /* LLL_LATENCY */
"[30;1m", /* LLL_USER */
"[0;1m", /* LLL_USER */
"[31m", /* LLL_THREAD */
};