Add more explicit error message on LibraryImport unit test error

This commit is contained in:
Wojtek Figat
2023-01-24 16:55:28 +01:00
parent e818d37dd6
commit 35ea0b5447

View File

@@ -33,7 +33,7 @@ namespace FlaxEngine.Tests
bool found = NativeLibrary.TryGetExport(library, libraryImport.EntryPoint, out var addr);
if (!found)
{
Debug.LogError("Missing library import: " + libraryImport.EntryPoint);
Debug.LogError("Missing library import: " + libraryImport.EntryPoint + " on " + type.FullName + "::" + method.Name);
result++;
}
}