Skip to content

augustd/owasp-security-logging

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Build Status CII Best Practices Coverity Scan Status codecov.io Codacy Badge

License Version

owasp-security-logging

OWASP Security Logging Project - Standard Java API to log security related events. Documentation

View our AppSec Europe 2016 presentaton about this project on SlideShare.

Usage with Maven:

As of version 1.1.0 Logback and Log4j support are in separate projects. To use OWASP Security Logging with Logback, add the following Maven dependency to pom.xml:

<dependency>
  <groupId>org.owasp</groupId>
  <artifactId>security-logging-logback</artifactId>
  <version>LATEST</version>
</dependency>

(Also see Usage with Logback)

To use it with Log4j, add:

<dependency>
  <groupId>org.owasp</groupId>
  <artifactId>security-logging-log4j</artifactId>
  <version>LATEST</version>
</dependency>

(Log4j users please see Usage with Log4j)

Maven imports will automatically include the common classes. If using OWASP Security Logging on your classpath, you need to include security-logging-common-VERSION.jar in addition to the correct jar for either Logback or Log4j.