Akka Stream log operator documentation fix (#27654)

* Fix Akka Stream log operator documentation example

* Keep Scala documentation example in sync
This commit is contained in:
Jakob Merljak 2019-09-10 13:24:24 +02:00 committed by Patrik Nordwall
parent a32a89b656
commit 4576835cce
2 changed files with 5 additions and 5 deletions

View file

@ -18,8 +18,8 @@ object Log {
.addAttributes(
Attributes.logLevels(
onElement = Attributes.LogLevels.Off,
onFailure = Attributes.LogLevels.Error,
onFinish = Attributes.LogLevels.Info))
onFinish = Attributes.LogLevels.Info,
onFailure = Attributes.LogLevels.Error))
//#log
}
}