Skip to content

Commit

Permalink
Fix request body getter (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
banduk authored Aug 19, 2020
1 parent fe120a2 commit e368247
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/pier_logging/request_logger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def log(args)
request: {
headers: request_headers,
href: request.url,
body: parse_body(request.POST)
body: parse_body(request.body)
},
response: {
status: status,
Expand Down
2 changes: 1 addition & 1 deletion lib/pier_logging/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PierLogging
VERSION = "0.2.3"
VERSION = "0.2.4"
end

0 comments on commit e368247

Please sign in to comment.