Skip to content

Commit

Permalink
Merge pull request #3488 from rossabaker/issue-3482
Browse files Browse the repository at this point in the history
Don't call .toString on ResponseLogger input
  • Loading branch information
rossabaker committed Jun 23, 2020
2 parents 3f32db0 + 35e99b2 commit 08a1979
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -67,7 +67,7 @@ object ResponseLogger {
}
.guaranteeCase {
case ExitCase.Error(t) => fk(log(s"service raised an error: ${t.getClass}"))
case ExitCase.Canceled => fk(log(s"service cancelled response for request [$req]"))
case ExitCase.Canceled => fk(log(s"service canceled response for request"))
case ExitCase.Completed => G.unit
}
}
Expand Down

0 comments on commit 08a1979

Please sign in to comment.