diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-01-09 08:41:46 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-01-10 14:11:50 +0000 |
commit | 8b93cb756cda7437bff13a34dba1b2754e306ab8 (patch) | |
tree | cb36e958bab163e59b54cae0eed9da18f06162d8 /src/Kconfig | |
parent | 37bf996efb16aa48fb0270b38b3c83633c3bf784 (diff) |
timestamps: Fix TIMESTAMPS_ON_CONSOLE behaviour
As logging is guarded by Kconfig, increase the level from BIOS_SPEW
to BIOS_INFO.
The original callsite inside timestamp_add_table_entry() was also
called when syncing from timestamps from .bss to CBMEM. We should
not reprint the values then.
Change-Id: I72ca4b6a04d8734c141a04e651fc8c23932b1f23
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38300
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Kconfig b/src/Kconfig index 762cf8901b..9118914e3c 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -224,7 +224,7 @@ config TIMESTAMPS_ON_CONSOLE default n depends on COLLECT_TIMESTAMPS help - Print the timestamps to the debug console if enabled at level spew. + Print the timestamps to the debug console if enabled at level info. config USE_BLOBS bool "Allow use of binary-only repository" |