com.breuninger.boot.jobs.domain.JobMarker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-breuninger-jobs Show documentation
Show all versions of spring-boot-starter-breuninger-jobs Show documentation
spring-boot-starter-breuninger-jobs
package com.breuninger.boot.jobs.domain;
import org.slf4j.Marker;
import org.slf4j.MarkerFactory;
public class JobMarker {
public static final Marker JOB = MarkerFactory.getMarker("JOB");
public static Marker jobMarker(final String jobType) {
final var marker = MarkerFactory.getMarker(jobType);
JOB.add(marker);
return marker;
}
}