Display log level information in preferences

This commit is contained in:
Michael Vetter
2022-06-22 12:59:50 +02:00
parent ff8065eaca
commit b302c604ab
3 changed files with 22 additions and 0 deletions

View File

@@ -2018,6 +2018,10 @@ cons_log_setting(void)
cons_show("Shared log (/log shared) : ON");
else
cons_show("Shared log (/log shared) : OFF");
log_level_t filter = log_get_filter();
const gchar *level = log_string_from_level(filter);
cons_show("Log level (/log level) : %s", level);
}
void