A MarkerContext trait, to provide easy access to org.slf4j.Marker in Logger API. This is usually accessed
with a marker through an implicit conversion from a Marker.
implicitval markerContext: MarkerContext = org.slf4j.MarkerFactory.getMarker("EXAMPLEMARKER")
log.error("This message will be logged with the EXAMPLEMARKER marker")
A MarkerContext trait, to provide easy access to org.slf4j.Marker in Logger API. This is usually accessed with a marker through an implicit conversion from a Marker.