From fffd43eb4f102c8a6abc2baab184936a58e05cdb Mon Sep 17 00:00:00 2001 From: ben marsh Date: Fri, 22 Mar 2019 17:29:39 -0400 Subject: [PATCH] Fix log output showing CL being synced for iterative cooks. #jira [FYI] Jeff.Williams #ROBOMERGE-OWNER: lina.halper #ROBOMERGE-AUTHOR: ben.marsh #ROBOMERGE-SOURCE: CL 5491806 via CL 5492141 via CL 5492157 #ROBOMERGE-BOT: ANIM (Main -> Dev-Anim) [CL 5510554 by ben marsh in Dev-Anim branch] --- .../Programs/AutomationTool/Scripts/SharedCookedBuild.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Engine/Source/Programs/AutomationTool/Scripts/SharedCookedBuild.cs b/Engine/Source/Programs/AutomationTool/Scripts/SharedCookedBuild.cs index c7bc0205f538..0edbef386c47 100644 --- a/Engine/Source/Programs/AutomationTool/Scripts/SharedCookedBuild.cs +++ b/Engine/Source/Programs/AutomationTool/Scripts/SharedCookedBuild.cs @@ -1,4 +1,4 @@ -// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. +// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.IO; @@ -166,7 +166,7 @@ public class SharedCookedBuild } FinalCookedBuildPath = BestBuild; - CommandUtils.LogInformation("Selected build: {0}"); + CommandUtils.LogInformation("Selected build: {0}", BestCLNumber); return true; }