StaticMarkerBinder.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to you under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.slf4j.impl;

  18. import org.apache.logging.slf4j.Log4jMarkerFactory;
  19. import org.slf4j.IMarkerFactory;
  20. import org.slf4j.spi.MarkerFactoryBinder;

  21. /**
  22.  * SLF4J MarkerFactoryBinder implementation using Log4j. This class is part of the required classes used to specify an
  23.  * SLF4J logging provider implementation.
  24.  */
  25. public class StaticMarkerBinder implements MarkerFactoryBinder {

  26.     /**
  27.      * The unique instance of this class.
  28.      */
  29.     public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();

  30.     private final IMarkerFactory markerFactory = new Log4jMarkerFactory();

  31.     /**
  32.      * Returns the {@link #SINGLETON} {@link StaticMarkerBinder}.
  33.      * Added to slf4j-api 1.7.14 via https://github.com/qos-ch/slf4j/commit/ea3cca72cd5a9329a06b788317a17e806ee8acd0
  34.      * @return the singleton instance
  35.      */
  36.     public static StaticMarkerBinder getSingleton() {
  37.         return SINGLETON;
  38.     }

  39.     @Override
  40.     public IMarkerFactory getMarkerFactory() {
  41.         return markerFactory;
  42.     }

  43.     @Override
  44.     public String getMarkerFactoryClassStr() {
  45.         return Log4jMarkerFactory.class.getName();
  46.     }
  47. }