Sergio Peña created SENTRY-2088:
-----------------------------------
Summary: Use common SLF4J APIs instead of LOG4J directly to allow
support of different LOG4J versions
Key: SENTRY-2088
URL: https://issues.apache.org/jira/browse/SENTRY-2088
Project: Sentry
Issue Type: Improvement
Components: Sentry
Affects Versions: 2.0.0
Reporter: Sergio Peña
Sentry uses a couple of different APIs to log messages, some are from SLF4J and
others are from LOG4J dependencies.
For instance:
{noformat}
SLF4J api:
Logger LOGGER = LoggerFactory.getLogger(GMAuditMetadataLogEntity.class);
LOG4J api:
Logger LOGGER = LogManager.getLogger(className);
{noformat}
SLF4J is an interface that uses the Log4j implementation detected at runtime.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)