Catalog alignment
[sdc.git] / common-app-logging / src / main / java / org / openecomp / sdc / common / log / enums / LogMarkers.java
1 package org.openecomp.sdc.common.log.enums;
2
3 /**
4  * Created by mm288v on 12/27/2017.
5  * This enum reflects the Marker text in logback.xml file per each ecomp marker
6  */
7 public enum LogMarkers {
8     DEBUG_MARKER("DEBUG_MARKER"),
9     ERROR_MARKER("ERROR_MARKER"),
10     METRIC_MARKER("METRICS"),
11     SUPPORTABILITY_MARKER("SUPPORTABILITY_MARKER");
12
13     private String text;
14
15     LogMarkers (String text){
16         this.text = text;
17     }
18
19     public String text(){
20         return text;
21     }
22
23 }