From 4e41531dd6bfcdf33532c72143259fcf03f867b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 5 Dec 2013 12:42:42 +0100 Subject: [PATCH] Don't dump the whole store json to the console --- UI/Store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Store.cpp b/UI/Store.cpp index 981b7d7999..e2f2b4a60a 100644 --- a/UI/Store.cpp +++ b/UI/Store.cpp @@ -136,7 +136,7 @@ void StoreScreen::update(InputState &input) { if (listing_->ResultCode() == 200) { std::string listingJson; listing_->buffer().TakeAll(&listingJson); - printf("%s\n", listingJson.c_str()); + // printf("%s\n", listingJson.c_str()); loading_ = false; ParseListing(listingJson);