/* * Copyright (C) 2016-2017 Lightbend Inc. */ package akka.stream import akka.event.LoggingAdapter /** * SPI intended only to be extended by custom [[Materializer]] implementations, * that also want to provide stages they materialize with specialized [[akka.event.LoggingAdapter]] instances. */ trait MaterializerLoggingProvider { this: Materializer ⇒ def makeLogger(logSource: Class[_]): LoggingAdapter }