Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
Need to extend org.apache.ignite.client.IgniteClient.Builder in order to provide an ability to specify LoggerFactory, where LoggerFactory is the following interface:
public interface LoggerFactory { default System.Logger forClass(Class<?> clazz) { return forName(Objects.requireNonNull(clazz).getName()); } System.Logger forName(String name); }
The configured backend should be stored within org.apache.ignite.client.IgniteClientConfiguration.