Attention is currently required from: Nico Huber, Michał Żygowski, Patrick Georgi, Julius Werner, Igor Bagnucki, Felix Held. Hello build bot (Jenkins), Nico Huber, Michał Żygowski, Patrick Georgi, Igor Bagnucki, Julius Werner, Felix Held,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63144
to look at the new patch set (#5).
Change subject: src/console/Kconfig: Add option to disable loglevel prefix ......................................................................
src/console/Kconfig: Add option to disable loglevel prefix
This patch adds an option to disable loglevel prefixes. This patch helps to achieve clear messages when low loglevel is used and very few messages are displayed on a terminal. This option also allows to maintain compatibility with log readers and continuous integration systems that depend on fixed log content.
If the code contains: printk(BIOS_DEBUG, "This is a debug message!\n") it will show as: [DEBUG] This is a debug message! but if the Kconfig contains: CONFIG_CONSOLE_USE_LOGLEVEL_PREFIX=n the same message will show up as This is a debug message!
Signed-off-by: Igor Bagnucki igor.bagnucki@3mdeb.com Change-Id: I911bb601cf1933a4c6498b2ae1e4cb4d4bc85621 --- M src/console/Kconfig M src/console/printk.c 2 files changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/63144/5