From 6c9805993f8d661a0343f4e914e5f3097adec6f1 Mon Sep 17 00:00:00 2001 From: Jkorf Date: Thu, 23 Sep 2021 11:26:45 +0200 Subject: [PATCH] Fixed missing log --- CryptoExchange.Net/RestClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CryptoExchange.Net/RestClient.cs b/CryptoExchange.Net/RestClient.cs index c7797d1..04bee18 100644 --- a/CryptoExchange.Net/RestClient.cs +++ b/CryptoExchange.Net/RestClient.cs @@ -222,7 +222,7 @@ namespace CryptoExchange.Net } string? paramString = null; - if (parameterPosition == HttpMethodParameterPosition.InBody) + if (paramsPosition == HttpMethodParameterPosition.InBody) paramString = " with request body " + request.Content; if (log.Level == LogLevel.Trace)