From 020893fcbfb6dac8f45dd4563630cdd023a41f81 Mon Sep 17 00:00:00 2001 From: JKorf Date: Tue, 20 Mar 2018 16:04:14 +0100 Subject: [PATCH] Added data returned logging when debugging --- CryptoExchange.Net/CryptoExchange.Net.csproj | 2 +- CryptoExchange.Net/ExchangeClient.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CryptoExchange.Net/CryptoExchange.Net.csproj b/CryptoExchange.Net/CryptoExchange.Net.csproj index 2b702dc..dae3b75 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.csproj +++ b/CryptoExchange.Net/CryptoExchange.Net.csproj @@ -7,7 +7,7 @@ CryptoExchange.Net JKorf - 0.0.11 + 0.0.12 false https://github.com/JKorf/CryptoExchange.Net https://github.com/JKorf/CryptoExchange.Net/blob/master/LICENSE diff --git a/CryptoExchange.Net/ExchangeClient.cs b/CryptoExchange.Net/ExchangeClient.cs index 1eb9b74..862d60e 100644 --- a/CryptoExchange.Net/ExchangeClient.cs +++ b/CryptoExchange.Net/ExchangeClient.cs @@ -133,6 +133,7 @@ namespace CryptoExchange.Net using (var reader = new StreamReader(response.GetResponseStream())) { returnedData = await reader.ReadToEndAsync().ConfigureAwait(false); + log.Write(LogVerbosity.Debug, "Data returned: " + returnedData); return new CallResult(returnedData, null); } }