Refactoring Consolidation Service
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / ecomplog / Enums / LogMarkers.java
1 package org.openecomp.sdc.common.ecomplog.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     AUDIT_MARKER("AUDIT_MARKER"),
11     METRIC_MARKER("METRICS");
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 }