Fix references to Log (#31556)
The `akka.stream.Log` class referenced does not exist, it uses `akka.event.Logging` https://github.com/akka/akka/blob/main/akka-stream/src/main/scala/akka/stream/impl/fusing/Ops.scala#L1509 and https://github.com/akka/akka/blob/main/akka-stream/src/main/scala/akka/stream/impl/fusing/Ops.scala#L1629
This commit is contained in:
parent
7014f520e5
commit
c27d16b463
1 changed files with 2 additions and 2 deletions
|
|
@ -2663,7 +2663,7 @@ trait FlowOps[+Out, +Mat] {
|
|||
* This can be adjusted according to your needs by providing a custom [[Attributes.LogLevels]] attribute on the given Flow:
|
||||
*
|
||||
* Uses implicit [[LoggingAdapter]] if available, otherwise uses an internally created one,
|
||||
* which uses `akka.stream.Log` as it's source (use this class to configure slf4j loggers).
|
||||
* which uses `akka.event.Logging(materializer.system, materializer)` as its source (use this class to configure slf4j loggers).
|
||||
*
|
||||
* Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute.
|
||||
*
|
||||
|
|
@ -2686,7 +2686,7 @@ trait FlowOps[+Out, +Mat] {
|
|||
* This can be adjusted according to your needs by providing a custom [[Attributes.LogLevels]] attribute on the given Flow:
|
||||
*
|
||||
* Uses implicit [[MarkerLoggingAdapter]] if available, otherwise uses an internally created one,
|
||||
* which uses `akka.stream.Log` as it's source (use this class to configure slf4j loggers).
|
||||
* which uses `akka.event.Logging.withMarker(materializer.system, materializer)` as its source (use this class to configure slf4j loggers).
|
||||
*
|
||||
* Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue