summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Kconfig2
-rw-r--r--src/lib/timestamp.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 762cf8901bd2..9118914e3c01 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"
diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c
index 7c7210cc5a57..d2206f613463 100644
--- a/src/lib/timestamp.c
+++ b/src/lib/timestamp.c
@@ -130,9 +130,6 @@ static void timestamp_add_table_entry(struct timestamp_table *ts_table,
tse->entry_id = id;
tse->entry_stamp = ts_time - ts_table->base_time;
- if (CONFIG(TIMESTAMPS_ON_CONSOLE))
- printk(BIOS_SPEW, "Timestamp - %s: %llu\n", timestamp_name(id), ts_time);
-
if (ts_table->num_entries == ts_table->max_entries)
printk(BIOS_ERR, "ERROR: Timestamp table full\n");
}
@@ -152,6 +149,9 @@ void timestamp_add(enum timestamp_id id, uint64_t ts_time)
}
timestamp_add_table_entry(ts_table, id, ts_time);
+
+ if (CONFIG(TIMESTAMPS_ON_CONSOLE))
+ printk(BIOS_INFO, "Timestamp - %s: %llu\n", timestamp_name(id), ts_time);
}
void timestamp_add_now(enum timestamp_id id)