File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
http-core/src/main/scala/org/apache/pekko/http/impl/util Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import org.apache.pekko
2020import pekko .annotation .InternalApi
2121import pekko .stream .stage .GraphStageLogic
2222import pekko .event .{ LogSource , LoggingAdapter , NoLogging }
23- import pekko .stream .ActorMaterializer
23+ import pekko .stream .Materializer
2424
2525// TODO Try to reconcile with what Pekko provides in StageLogging.
2626// We thought this could be removed when https://github.com/akka/akka/issues/18793 had been implemented
@@ -44,8 +44,8 @@ private[pekko] trait StageLoggingWithOverride extends GraphStageLogic {
4444 logOverride match {
4545 case DefaultNoLogging =>
4646 materializer match {
47- case a : ActorMaterializer => pekko.event.Logging (a .system, logSource)(LogSource .fromClass)
48- case _ => NoLogging
47+ case m : Materializer => pekko.event.Logging (m .system, logSource)(LogSource .fromClass)
48+ case _ => NoLogging
4949 }
5050 case x => x
5151 }
You can’t perform that action at this time.
0 commit comments