summaryrefslogtreecommitdiffstats
path: root/src/host/virt_phy
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2021-10-05 13:40:54 +0200
committerlaforge <laforge@osmocom.org>2021-11-15 17:12:22 +0000
commit0af84f408d4e7fed02365ed0c4ec501d12d7d724 (patch)
tree61f392109384d1ed306a604ffbf2bbb7e881dbba /src/host/virt_phy
parent3e8518a44bc2cf56d3e2379eb83b592ae668d3bd (diff)
logging: use meaningful default loglevels
Some logging categories use LOGL_INFO or even LOGL_DEBUG. Lets set those to LOGL_NOTICE to have a less crowded default log output. Change-Id: I3faefccae2218b17bd942bc2afac7d8e515897b7 Related: OS#2577
Diffstat (limited to 'src/host/virt_phy')
-rw-r--r--src/host/virt_phy/src/logging.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/host/virt_phy/src/logging.c b/src/host/virt_phy/src/logging.c
index 11a21a37..f898a082 100644
--- a/src/host/virt_phy/src/logging.c
+++ b/src/host/virt_phy/src/logging.c
@@ -70,28 +70,28 @@ static const struct log_info_cat default_categories[] = {
.description = "Layer 1 Control",
.color = "\033[1;31m",
.enabled = 1,
- .loglevel = LOGL_INFO,
+ .loglevel = LOGL_NOTICE,
},
[DL1P] = {
.name = "DL1P",
.description = "Layer 1 Data",
.color = "\033[1;31m",
.enabled = 1,
- .loglevel = LOGL_INFO,
+ .loglevel = LOGL_NOTICE,
},
[DVIRPHY] = {
.name = "DVIRPHY",
.description = "Virtual Layer 1 Interface",
.color = "\033[1;31m",
.enabled = 1,
- .loglevel = LOGL_INFO,
+ .loglevel = LOGL_NOTICE,
},
[DMAIN] = {
.name = "DMAIN",
.description = "Main Program / Data Structures",
.color = "\033[1;32m",
.enabled = 1,
- .loglevel = LOGL_INFO,
+ .loglevel = LOGL_NOTICE,
},
};