From c5b71752d5111278360404587a8776b75848fd9a Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Wed, 20 Nov 2019 04:50:52 +0100 Subject: fix DLSMS logging category color: '[1:38m' isn't actually defined Instead it apparently renders as bright white, so just use that constant instead. Change-Id: Ic775b6e37ccf61dc71a540b41d6a16a8a9291dc2 --- src/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging.c b/src/logging.c index 7baa7778..4d6224d5 100644 --- a/src/logging.c +++ b/src/logging.c @@ -163,7 +163,7 @@ static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = { .name = "DLSMS", .description = "Layer3 Short Message Service (SMS)", .enabled = 1, .loglevel = LOGL_NOTICE, - .color = "\033[1;38m", + .color = OSMO_LOGCOLOR_BRIGHTWHITE, }, [INT2IDX(DLCTRL)] = { .name = "DLCTRL", -- cgit v1.2.3