Skip to content

Commit

Permalink
Fix failure message
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Piechura authored and marcpiechura committed Oct 5, 2016
1 parent 3416044 commit 515c1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka.Streams/Implementation/Fusing/Ops.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,7 @@ public Logic(Log<T> stage, Attributes inheritedAttributes) : base(stage.Shape)
_log.Error(ex, $"[{stage._name}] Upstream failed.");
else
_log.Log(_logLevels.OnFailure,
$"[{stage._name}] Upstream failed, cause {ex.GetType().Name}: {ex.Message}");
$"[{stage._name}] Upstream failed, cause: {ex.GetType()} {ex.Message}");
}

FailStage(ex);
Expand Down

0 comments on commit 515c1a6

Please sign in to comment.