COMMON: Improved debug output for dumping archives

This commit is contained in:
Eugene Sandulenko 2024-05-24 18:17:45 +02:00
parent 1b1d06839c
commit 25577d4702
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -132,7 +132,7 @@ Common::Error Archive::dumpArchive(const Path &destPath) {
for (auto &f : files) {
Common::Path filePath = f->getPathInArchive().punycodeEncode();
debug(1, "File: %s", filePath.toString().c_str());
debug(1, "dumpArchive(): File: %s", filePath.toString().c_str());
// skip if f represents a directory
if (filePath.isSeparatorTerminated()) continue;