org.beifengtz.jvmm.server.entity.conf.LogConf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jvmm-server Show documentation
Show all versions of jvmm-server Show documentation
Provides access to operating system, process, thread and other information during Java runtime.
package org.beifengtz.jvmm.server.entity.conf;
/**
*
* Description: TODO
*
*
* Created in 16:44 2022/9/7
*
* @author beifengtz
*/
public class LogConf {
private String level = "info";
private boolean useJvmm;
public String getLevel() {
return level;
}
public LogConf setLevel(String level) {
this.level = level;
return this;
}
public boolean isUseJvmm() {
return useJvmm;
}
public LogConf setUseJvmm(boolean useJvmm) {
this.useJvmm = useJvmm;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy