Examples of FoundationLoggingMarker


Examples of com.cisco.oss.foundation.logging.structured.FoundationLoggingMarker

      Marker marker = foundationLof4jLoggingEvent.getSlf4jMarker();
     
      marker.getName();
     
      if(marker instanceof FoundationLoggingMarker){
        FoundationLoggingMarker foundationLoggingMarker = (FoundationLoggingMarker)marker;
        String userFieldValue = foundationLoggingMarker.valueOf(key);
        if(FoundationLoggingMarker.NO_OPERATION.equals(userFieldValue)){
          toAppendTo.append("");
        }else{
          toAppendTo.append(userFieldValue)
        }
View Full Code Here

Examples of com.cisco.oss.foundation.logging.structured.FoundationLoggingMarker

      if (marker instanceof FoundationLoggingMarker) { // So this converter may
                            // uses internal pattern
                            // that is composed
                            // layout of %u{}

        FoundationLoggingMarker foundationMarker = (FoundationLoggingMarker) marker;

        String pattern = foundationMarker.getFormatter().getFormat(foundationLof4jLoggingEvent.getAppenderName());
       
        if (pattern != null) { // only if we have pattern from one of
                    // two options
          if (layoutsMap.get(pattern) == null) {
            layoutsMap.put(pattern, new FoundationLoggingPatternLayout(pattern));
View Full Code Here

Examples of com.cisco.oss.foundation.logging.structured.FoundationLoggingMarker

      Marker marker = foundationLof4jLoggingEvent.getMarker();
     
      marker.getName();
     
      if(marker instanceof FoundationLoggingMarker){
        FoundationLoggingMarker foundationLoggingMarker = (FoundationLoggingMarker)marker;
        String userFieldValue = foundationLoggingMarker.valueOf(key);
        if(FoundationLoggingMarker.NO_OPERATION.equals(userFieldValue)){
          toAppendTo.append("");
        }else{
          toAppendTo.append(userFieldValue)
        }
View Full Code Here

Examples of com.cisco.oss.foundation.logging.structured.FoundationLoggingMarker

      if (marker instanceof FoundationLoggingMarker) { // So this converter may
                            // uses internal pattern
                            // that is composed
                            // layout of %u{}

        FoundationLoggingMarker foundationMarker = (FoundationLoggingMarker) marker;

        String pattern = foundationMarker.getFormatter().getFormat(foundationLof4jLoggingEvent);
       
        if (pattern != null) { // only if we have pattern from one of
                    // two options
          if (layoutsMap.get(pattern) == null) {
            layoutsMap.put(pattern, new FoundationLoggingPatternLayout(pattern));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.