From 6f227a8cb95a872a92a3b836990d705d7bd05603 Mon Sep 17 00:00:00 2001 From: getnamo Date: Sat, 10 Nov 2018 04:13:26 -0800 Subject: [PATCH] 4.21 build.cs fix - log isn't available in that context --- Source/UnrealEnginePython/UnrealEnginePython.Build.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs index 4fc76c7d6..ca40bd940 100644 --- a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs +++ b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs @@ -118,11 +118,11 @@ public void AddRuntimeDependenciesForCopying(ReadOnlyTargetRules Target) { RuntimeDependencies.Add(File.ToString()); } - else if (bVerboseBuild) + /*else if (bVerboseBuild) { Log.TraceInformation("Not adding the following file as RuntimeDependency: "); Log.TraceInformation(File.ToString()); - } + }*/ } }