We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c655c9 commit b6167a9Copy full SHA for b6167a9
1 file changed
Communication/HttpClientManager.cs
@@ -22,10 +22,18 @@ namespace Communication
22
/// </summary>
23
public static class HttpClientManager
24
{
25
+ /// <summary>
26
+ /// The tracing handler
27
+ /// </summary>
28
+ private static readonly HttpWireTracingHandler TracingHandler = new()
29
+ {
30
+ InnerHandler = new HttpClientHandler()
31
+ };
32
+
33
/// <summary>
34
/// Singleton pattern is correct here
35
- private static readonly HttpClient HttpClient = new();
36
+ private static readonly HttpClient HttpClient = new(TracingHandler);
37
38
39
/// Calls a SOAP service asynchronously.
0 commit comments