com.networknt.logging.model.LoggerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logger-config Show documentation
Show all versions of logger-config Show documentation
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