1 package cn.home1.oss.boot.autoconfigure;
2
3 import org.springframework.beans.factory.annotation.Value;
4
5 /**
6 * Created by zhanghaolun on 16/9/22.
7 */
8 @SuppressWarnings({"PMD.ImmutableField", "PMD.SingularField", "PMD.UnusedPrivateField"})
9 public class AppLogProperties {
10
11 @Value("${log.flag:logTrace}")
12 private String flag = "logTrace";
13 }