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
This commit is contained in:
Neels Hofmeyr 2019-11-20 04:50:52 +01:00 committed by laforge
parent f2644aee55
commit c5b71752d5
1 changed files with 1 additions and 1 deletions

View File

@ -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",