All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.testdroid.api.serialization.level.Log4jLevelModule Maven / Gradle / Ivy

There is a newer version: 3.34.0
Show newest version
package com.testdroid.api.serialization.level;

import com.fasterxml.jackson.databind.module.SimpleModule;
import org.apache.logging.log4j.Level;

/**
 * @author Artur Ćwikliński 
 *
 * This class is responsible for serialization and deserialization of log4j2 Level class.
 */
public class Log4jLevelModule extends SimpleModule {

    public Log4jLevelModule() {
        this.addSerializer(Level.class, new Log4jLevelSerializer(Level.class));
        this.addDeserializer(Level.class, new Log4jLevelDeserializer(Level.class));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy