mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00
fix(cert-create): change WARN to VERBOSE
SAVE_KEYS is set to '0' by default, causing cert_create to show the 'Key filename not specified' message on each run even though this is perfectly normal. Show the message only in the VERBOSE log level. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Change-Id: I472cdec2670055ab0edd99d172f79d01ad575972
This commit is contained in:
parent
6264643a07
commit
76a85cfa0a
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ int key_load(key_t *key, unsigned int *err_code)
|
|||
*err_code = KEY_ERR_OPEN;
|
||||
}
|
||||
} else {
|
||||
WARN("Key filename not specified\n");
|
||||
VERBOSE("Key filename not specified\n");
|
||||
*err_code = KEY_ERR_FILENAME;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue