From e2e53cbed7926e314b439f3f50b33f558e5440f7 Mon Sep 17 00:00:00 2001 From: Luca D'Amico Date: Tue, 20 Aug 2024 19:23:25 +0200 Subject: [PATCH] Removed unused char (flag) from _file_IDs.txt logging --- ndsfactory/ndsfactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ndsfactory/ndsfactory.cpp b/ndsfactory/ndsfactory.cpp index 607ce6d..f80b7bd 100644 --- a/ndsfactory/ndsfactory.cpp +++ b/ndsfactory/ndsfactory.cpp @@ -251,7 +251,7 @@ bool NDSFactory::extractFatData(const std::string& fatDataSectionPath, const std if (logFileIDs) { - std::string log = std::format("{:x}",subFolderId) + "::D::" + newPath.substr(savePath.size()+1) + '\n'; + std::string log = std::format("{:x}",subFolderId) + ":::" + newPath.substr(savePath.size()+1) + '\n'; if (!logToFile(savePath + "/_file_IDs.txt", log)) return false; } @@ -270,7 +270,7 @@ bool NDSFactory::extractFatData(const std::string& fatDataSectionPath, const std if (logFileIDs) { - std::string log = std::format("{:x}", fatOffset) + "::F::" + newPath.substr(savePath.size()+1) + '\n'; + std::string log = std::format("{:x}", fatOffset) + ":::" + newPath.substr(savePath.size()+1) + '\n'; if (!logToFile(savePath + "/_file_IDs.txt", log)) return false; }