Skip to content

Commit

Permalink
logs
Browse files Browse the repository at this point in the history
  • Loading branch information
noescape00 committed Aug 9, 2022
1 parent 80c2822 commit 13af80c
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using Unity3dApi;
using UnityEngine;
using UnityEngine.Networking;
using Debug = System.Diagnostics.Debug;

public class MyCollectionController
{
Expand Down Expand Up @@ -74,9 +75,11 @@ public async UniTask LoadItemsAsync(CancellationToken token)
{
NFTMetadataModels = new List<NFTMetadataModel>(NFTMetadataModels.Count);

var items = await this.LoadCollectionItemsAsync(token);
List<NFTItem> items = await this.LoadCollectionItemsAsync(token);

foreach (var item in items)
UnityEngine.Debug.Log(string.Format("Loading {0} items", items.Count));

foreach (NFTItem item in items)
{
this.SaveItemToStorage(item);
}
Expand Down

0 comments on commit 13af80c

Please sign in to comment.