Skip to content

Commit 37d12a1

Browse files
committed
Move colleciton console write to debug
1 parent 7d1cfd7 commit 37d12a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ModFramework/Relinker/ArrayToCollectionRelinker.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2020 DeathCradle
2+
Copyright (C) 2020-2024 SignatureBeef
33
44
This file is part of Open Terraria API v3 (OTAPI)
55
@@ -203,7 +203,7 @@ public DefaultCollection(int width, int height)
203203
public static ICollection<TItem> CreateCollection(int width, int height, string source)
204204
{
205205
var collection = OnCreateCollection?.Invoke(width, height, source) ?? new DefaultCollection<TItem>(width, height);
206-
System.Console.WriteLine($"Created new {collection.Width}x{collection.Height} {collection.GetType().Name} for source: {source}");
206+
System.Diagnostics.Debug.WriteLine($"Created new {collection.Width}x{collection.Height} {collection.GetType().Name} for source: {source}");
207207
return collection;
208208
}
209209
}

0 commit comments

Comments
 (0)