You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@any23.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2021/12/18 02:53:00 UTC

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

    [ https://issues.apache.org/jira/browse/ANY23-538?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17461756#comment-17461756 ] 

ASF GitHub Bot commented on ANY23-538:
--------------------------------------

lewismc opened a new pull request #230:
URL: https://github.com/apache/any23/pull/230


   This issue addresses [ANY23-538](https://issues.apache.org/jira/browse/ANY23-538).
   
   Due to the recent widespread upgrades to Log4j2 everywhere, it also addresses [ANY23-539](https://issues.apache.org/jira/browse/ANY23-539) and [ANY23-536](https://issues.apache.org/jira/browse/ANY23-536).
   
   The introduction of the *ossindex-maven-plugin* and the additional rules to the *maven-enforcer-plugin* are ultimately aimed at making the Any23 build more secure.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@any23.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


> 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: build, logging
>    Affects Versions: 2.7
>            Reporter: Lewis John McGibbney
>            Assignee: Lewis John McGibbney
>            Priority: Major
>             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)