com.nimbusds.infinispan.persistence.dynamodb.logging.Loggers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-cachestore-dynamodb Show documentation
Show all versions of infinispan-cachestore-dynamodb Show documentation
Infinispan module for persisting data to an AWS DynamoDB table
The newest version!
package com.nimbusds.infinispan.persistence.dynamodb.logging;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
* Log4j loggers.
*/
public final class Loggers {
/**
* Main logger. Records general configuration, startup, shutdown and
* system messages.
*/
public static final Logger MAIN_LOG = LogManager.getLogger("MAIN");
/**
* DynamoDB request / response logger.
*/
public static final Logger DYNAMODB_LOG = LogManager.getLogger("DYN");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy