From f3febeb691b7a55c190f8fcfc4d8b4dc71574d51 Mon Sep 17 00:00:00 2001 From: coco875 <59367621+coco875@users.noreply.github.com> Date: Wed, 20 Aug 2025 19:08:40 +0200 Subject: [PATCH] Update Companion.cpp (#195) --- src/Companion.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Companion.cpp b/src/Companion.cpp index 62d6493..4485f3d 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -941,6 +941,7 @@ void Companion::ProcessFile(YAML::Node root) { std::string buffer = stream.str(); if(buffer.empty()) { + SPDLOG_WARN("No data to write for {}", this->gCurrentFile); return; } @@ -951,6 +952,7 @@ void Companion::ProcessFile(YAML::Node root) { } std::ofstream file(output, std::ios::binary); + SPDLOG_INFO("Writing {} to {}", this->gCurrentFile, output); if(this->gConfig.exporterType == ExportType::Header) { fs::path entryPath = this->gCurrentFile;