From e2ef1ea6594738d4461e75717a61ae05fb0541d6 Mon Sep 17 00:00:00 2001 From: Romain Thomas Date: Sun, 2 Feb 2025 11:15:28 +0100 Subject: [PATCH] Fix verbosity --- src/PE/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PE/Parser.cpp b/src/PE/Parser.cpp index 73931bb9c..d27bb71fc 100644 --- a/src/PE/Parser.cpp +++ b/src/PE/Parser.cpp @@ -414,7 +414,7 @@ Parser::parse_resource_node(const details::pe_resource_directory_table& director if ((id & 0x80000000) != 0u) { uint32_t offset = id & (~ 0x80000000); uint32_t string_offset = base_offset + offset; - LIEF_ERR("base_offset=0x{:04x}, string_offset=0x{:04x}", + LIEF_DEBUG("base_offset=0x{:04x}, string_offset=0x{:04x}", base_offset, string_offset); auto res_length = stream_->peek(string_offset);