For example i want to play around with the open auction plugin. I believe i understand it pretty well but I want to check and see exactly what getAuctionBuyList() is returning based on the different parameters. Would i just do something like
Or is there another way you are outputting a large amount of data so you can view it?
Code:
List<AuctionItem> items = getAuctionBuyList(req, 9);
foreach (AuctionItem item in items) {
log(item);
}
Or is there another way you are outputting a large amount of data so you can view it?