You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@any23.apache.org by "Lewis John McGibbney (Jira)" <ji...@apache.org> on 2021/12/17 03:25:00 UTC

[jira] [Created] (ANY23-538) Replace existing logging with Slf4j over log4j2

Lewis John McGibbney created ANY23-538:
------------------------------------------

             Summary: Replace existing logging with Slf4j over log4j2
                 Key: ANY23-538
                 URL: https://issues.apache.org/jira/browse/ANY23-538
             Project: Apache Any23
          Issue Type: Improvement
          Components: logging, build
    Affects Versions: 2.7
            Reporter: Lewis John McGibbney
            Assignee: Lewis John McGibbney
             Fix For: 2.7


Any23 currently uses the following logging architecture

{code:xml}
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>${slf4j.logger.version}</version>
      </dependency>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>jcl-over-slf4j</artifactId>
        <version>${slf4j.logger.version}</version>
      </dependency>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>jul-to-slf4j</artifactId>
        <version>${slf4j.logger.version}</version>
      </dependency>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>${slf4j.logger.version}</version>
      </dependency>
{code}

I would like to change it to Slf4j over Log4j2



--
This message was sent by Atlassian Jira
(v8.20.1#820001)