diff options
| author | coco875 <59367621+coco875@users.noreply.github.com> | 2025-08-20 19:08:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-20 11:08:40 -0600 |
| commit | f3febeb691b7a55c190f8fcfc4d8b4dc71574d51 (patch) | |
| tree | 645b00f86d1272d4ea2b714af96de528f2014852 /src/Companion.cpp | |
| parent | c7977c6e355b7779c2a44aa64c769382cc0b21f5 (diff) | |
Update Companion.cpp (#195)
Diffstat (limited to 'src/Companion.cpp')
| -rw-r--r-- | src/Companion.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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; |
