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); } }