Add debug message for GetBinaryType

This commit is contained in:
EnderIce2
2024-09-22 13:10:05 +03:00
parent cac9449457
commit 6f8e486740
2 changed files with 1 additions and 1 deletions

View File

@ -100,6 +100,7 @@ namespace Execute
BinaryType GetBinaryType(std::string Path)
{
FileNode *node = fs->GetByPath(Path.c_str(), nullptr);
debug("Checking binary type of %s (returning %p)", Path.c_str(), node);
assert(node != nullptr);
return GetBinaryType(node);
}