We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786b46b commit 52b86d5Copy full SHA for 52b86d5
src/Hazelcast.Net.Tests/Serialization/Compact/RemoteToObjectFirstTests.cs
@@ -19,7 +19,9 @@
19
using Hazelcast.Serialization.Compact;
20
using Hazelcast.Testing;
21
using Hazelcast.Testing.Conditions;
22
+using Microsoft.Extensions.Logging;
23
using NUnit.Framework;
24
+using LogLevel = Microsoft.Extensions.Logging.LogLevel;
25
26
namespace Hazelcast.Tests.Serialization.Compact
27
{
@@ -73,6 +75,8 @@ private HazelcastOptions GetHazelcastOptions()
73
75
74
76
options.ClusterName = RcCluster?.Id ?? options.ClusterName;
77
options.Networking.Addresses.Add("127.0.0.1:5701");
78
+ options.LoggerFactory.Creator = () => Microsoft.Extensions.Logging.LoggerFactory
79
+ .Create(conf => conf.AddConsole().SetMinimumLevel(LogLevel.Debug));
80
})
81
.Build();
82
0 commit comments