You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Konstantin Orlov (Jira)" <ji...@apache.org> on 2022/07/05 07:35:00 UTC

[jira] [Updated] (IGNITE-17240) Provide an ability to configure logging backend through IgniteClient.Builder

     [ https://issues.apache.org/jira/browse/IGNITE-17240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Orlov updated IGNITE-17240:
--------------------------------------
    Ignite Flags: Release Notes Required  (was: Docs Required,Release Notes Required)

> Provide an ability to configure logging backend through IgniteClient.Builder
> ----------------------------------------------------------------------------
>
>                 Key: IGNITE-17240
>                 URL: https://issues.apache.org/jira/browse/IGNITE-17240
>             Project: Ignite
>          Issue Type: Improvement
>          Components: clients
>            Reporter: Konstantin Orlov
>            Assignee: Konstantin Orlov
>            Priority: Major
>              Labels: ignite-3
>             Fix For: 3.0.0-alpha6
>
>          Time Spent: 2h 10m
>  Remaining Estimate: 0h
>
> Need to extend {{org.apache.ignite.client.IgniteClient.Builder}} in order to provide an ability to specify {{{}LoggerFactory{}}}, where {{LoggerFactory}} is the following interface:
>  
> {code:java}
> public interface LoggerFactory {
>     default System.Logger forClass(Class<?> clazz) {
>         return forName(Objects.requireNonNull(clazz).getName());
>     }
>     
>     System.Logger forName(String name);
> } {code}
> The configured backend should be stored within {{{}org.apache.ignite.client.IgniteClientConfiguration{}}}.
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)