1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  package ch.qos.logback.core.model;
15  
16  import ch.qos.logback.core.CoreConstants;
17  
18  public class ModelConstants {
19  
20      
21      public static final String DEBUG_SYSTEM_PROPERTY_KEY = "logback.debug";
22      public static final String NULL_STR = CoreConstants.NULL_STR;
23  
24      public static final String INVALID_ATTRIBUTES = "In <property> element, either the \"file\" attribute alone, or "
25              + "the \"resource\" element alone, or both the \"name\" and \"value\" attributes must be set.";
26  
27      public static final String PARENT_PROPPERTY_KEY = "parent";
28  }