From 266e3d78404976e24fdcfe98f4dfcfb5781157c5 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Sun, 12 May 2019 10:55:20 +0300 Subject: [PATCH] Update HttpClient.cs --- modules/magic.http/magic.http.services/HttpClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/magic.http/magic.http.services/HttpClient.cs b/modules/magic.http/magic.http.services/HttpClient.cs index f016216a28..42ffd80729 100644 --- a/modules/magic.http/magic.http.services/HttpClient.cs +++ b/modules/magic.http/magic.http.services/HttpClient.cs @@ -64,7 +64,7 @@ public async Task GetAsync( string accept = null, string token = null) { - _logger.Info($"Invoking HTTP GET towards '{url}'"); + _logger.Info($"Invoking HTTP GET towards '{url}' with stream callback"); await CreateRequest(url, net.HttpMethod.Get, functor, accept, token); }