Skip to content

Commit

Permalink
fix address_from_efi ret=0 message
Browse files Browse the repository at this point in the history
change LOG_WARNING level into LOG_DEBUG
  • Loading branch information
HuO50 committed Oct 26, 2022
1 parent 86bc6f8 commit 5fdcb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/efi.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ int address_from_efi(Log_t *logp, size_t * address)
}

if(ret == 0){
log_append(logp, LOGFL_NODUPS, LOG_WARNING, "%s: entry point at 0x%08llx", eptype, (unsigned long long)*address);
log_append(logp, LOGFL_NODUPS, LOG_DEBUG, "%s: entry point at 0x%08llx", eptype, (unsigned long long)*address);
}

return ret;
Expand Down

0 comments on commit 5fdcb2b

Please sign in to comment.