mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 14:42:36 +02:00
libflashrom: Set maximum log level SPEW by default
This log level is the maximum level that will trigger the log callback. By default log callback should be triggered for all messages, and then client can decide whether they want to lower the level. This also keeps the same behaviour for existing clients of libflashrom, the same as it was before introducing the ability to set max log level in log callback API. Follow up on commit 4e334c4f79da2b621917da8f47dcf33bb2c0cfbc Change-Id: Id063c31e685c930b9f5632c7b86ffac6fe477fd5 Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/87180 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Dmitry Zhadinets <dzhadinets@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
79f0d814c2
commit
f163f1c692
@ -34,7 +34,7 @@
|
||||
static flashrom_log_callback *global_log_callback = NULL;
|
||||
static flashrom_log_callback_v2 *global_log_callback_v2 = NULL;
|
||||
static void *global_log_user_data = NULL;
|
||||
static enum flashrom_log_level global_log_level = FLASHROM_MSG_INFO;
|
||||
static enum flashrom_log_level global_log_level = FLASHROM_MSG_SPEW;
|
||||
|
||||
int flashrom_init(const int perform_selfcheck)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user