From 35ea0b5447da307fb33445be822b163c5a6abd83 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 24 Jan 2023 16:55:28 +0100 Subject: [PATCH] Add more explicit error message on LibraryImport unit test error --- Source/Engine/Tests/TestScripting.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Tests/TestScripting.cs b/Source/Engine/Tests/TestScripting.cs index 62541742d..9d5d3ba83 100644 --- a/Source/Engine/Tests/TestScripting.cs +++ b/Source/Engine/Tests/TestScripting.cs @@ -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++; } }