Skip to content

Commit

Permalink
fix: get order of source & source key correct
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welker committed Oct 29, 2024
1 parent 590e162 commit db2d8a2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,11 @@ private void UpdateDestination(IRoutingSinkWithSwitching destination, RoutingInp
return;
}

// Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Got Source {source}", this, source);
//Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Got Source {@source} with key {sourceKey}", this, source, sourceKey);

destination.CurrentSourceInfo = source;
destination.CurrentSourceInfoKey = sourceKey;
destination.CurrentSourceInfo = source;

}

private TieLine GetRootTieLine(TieLine tieLine)
Expand Down

0 comments on commit db2d8a2

Please sign in to comment.