Clean up trace messages + add Trace debug in ActionManager

This commit is contained in:
Ethan Chiu
2020-06-18 16:13:56 -04:00
parent 038e5e2c2e
commit 180a687f30
3 changed files with 2 additions and 13 deletions

View File

@@ -36,14 +36,6 @@ namespace GitHub.Runner.Worker.Handlers
// Resolve action steps
var actionSteps = Data.Steps;
if (actionSteps == null)
{
Trace.Error("Data.Steps in CompositeActionHandler is null");
}
else
{
Trace.Info($"Data Steps Value for Composite Actions is: {actionSteps}.");
}
// Create Context Data to reuse for each composite action step
var inputsData = new DictionaryContextData();