Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 9898fd9

Browse files
Proof the values are being set, just not serializing
1 parent 77dc497 commit 9898fd9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/ApplicationCache.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,9 +613,20 @@ public void SetRemotes(IDictionary<string, ConfigRemote> remoteDictionary, IDict
613613
var now = DateTimeOffset.Now;
614614
configRemotes = new ConfigRemoteDictionary(remoteDictionary);
615615
remoteConfigBranches = new RemoteConfigBranchDictionary(branchDictionary);
616+
616617
Logger.Trace("SetRemotes {0}", now);
618+
617619
Logger.Trace("remoteDictionary.Length: {0}", remoteDictionary.Count);
618620
Logger.Trace("branchDictionary.Length: {0}", branchDictionary.Count);
621+
622+
foreach (var remotePair in remoteConfigBranches)
623+
{
624+
foreach (var remotePairBranch in remotePair.Value)
625+
{
626+
Logger.Trace("remoteConfigBranches Remote:{0} Branch:{1} BranchObject:{2}", remotePair.Key, remotePairBranch.Key, remotePairBranch.Value);
627+
}
628+
}
629+
619630
SaveData(now, true);
620631
}
621632

0 commit comments

Comments
 (0)