make compile-time default logging configuration less verbose

As Keith pointed out we shouldn't spam the stderr with debug level
logging by default.

Change-Id: I909affb3b798c13950f95628275a6ec3a38c76ca
This commit is contained in:
Harald Welte 2021-11-12 21:34:34 +01:00
parent 74fa8ba7a5
commit 5e0dfdcfe4
1 changed files with 2 additions and 2 deletions

View File

@ -30,12 +30,12 @@
static const struct log_info_cat default_categories[] = {
[DE1D] = {
.name = "DE1D",
.loglevel = LOGL_DEBUG,
.loglevel = LOGL_INFO,
.enabled = 1,
},
[DXFR] = {
.name = "DXFR",
.loglevel = LOGL_DEBUG,
.loglevel = LOGL_NOTICE,
.enabled = 1,
},
};