From 11bd39ddc1ec224d5f4161c9d4976f7dea494b5f Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Thu, 17 Dec 2020 21:37:58 +0100 Subject: [PATCH] More debug output while parsing sections --- src/dwarfs/filesystem_v2.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dwarfs/filesystem_v2.cpp b/src/dwarfs/filesystem_v2.cpp index 638673eb..3b1d2199 100644 --- a/src/dwarfs/filesystem_v2.cpp +++ b/src/dwarfs/filesystem_v2.cpp @@ -223,6 +223,8 @@ filesystem_::filesystem_(logger& lgr, std::shared_ptr mm, section_map sections; while (auto s = parser.next_section()) { + LOG_DEBUG << "section " << s->description() << " @ " << s->start() << " [" + << s->length() << " bytes]"; if (s->type() == section_type::BLOCK) { cache.insert(*s); } else {