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

com.networknt.logging.model.LoggerInfo Maven / Gradle / Ivy

Go to download

This module will provide the information about logging and switch logging level.

The newest version!
package com.networknt.logging.model;

public class LoggerInfo {
    private String name;
    private String level;

    public LoggerInfo() {

    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getLevel() {
        return level;
    }

    public void setLevel(String level) {
        this.level = level;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy