trait LowPriorityMarkerContextImplicits extends AnyRef
- Source
- Logger.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- LowPriorityMarkerContextImplicits
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- implicit val NoMarker: MarkerContext
A MarkerContext that returns None.
A MarkerContext that returns None. This is used as the "default" marker context if no implicit MarkerContext is found in local scope (meaning there is nothing defined through import or "implicit val").
- implicit def markerToMarkerContext(marker: Marker): MarkerContext
Enables conversion from a marker to a MarkerContext:
Enables conversion from a marker to a MarkerContext:
val mc: MarkerContext = MarkerFactory.getMarker("SOMEMARKER")
- marker
the SLF4J marker to convert
- returns
the result of
MarkerContext.apply(marker)