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

com.sinszm.sofa.SzmLogProperties Maven / Gradle / Ivy

Go to download

高可用服务框架,公共依赖库 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.

The newest version!
package com.sinszm.sofa;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * 补充日志配置
 * @author sinszm
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@ConfigurationProperties(prefix = "logging")
public class SzmLogProperties {
    /**
     * 默认的日志目录,主要是sofaBoot的日志记录
     */
    private String path = "./logs";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy