Skip to content

Commit

Permalink
Add List Dumper (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyk4j authored Mar 12, 2024
1 parent 4a58b4c commit 400bdc7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Wreck/Logging/Dumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,13 @@ public static void Dump<K,V>(IDictionary<K, V> values)
entry.Value.ToString());
}
}

public static void Dump<T>(IList<T> values)
{
foreach(T v in values)
{
LOG.DebugFormat("{0}", v.ToString());
}
}
}
}

0 comments on commit 400bdc7

Please sign in to comment.