Attention is currently required from: Igor Bagnucki. Hello build bot (Jenkins), Igor Bagnucki,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63144
to look at the new patch set (#3).
Change subject: src/console/Kconfig: Add option to disable loglevel prefix ......................................................................
src/console/Kconfig: Add option to disable loglevel prefix
This patch add option to disable loglevel prefixes. This 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 compatinility with log readers and continous integrations 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/3