Skip to content

Commit

Permalink
Merge pull request #9 from 0xTim/patch-1
Browse files Browse the repository at this point in the history
Fix bug in StackdriverLogHandler.swift
  • Loading branch information
jordanebelanger authored Jan 7, 2025
2 parents ce7461d + 4c746e2 commit b74757b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/StackdriverLogging/StackdriverLogHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ extension Logger {
metadataValue["requestUrl"] = .optionalString(requestUrl)
metadataValue["requestSize"] = .optionalString(requestSize)
metadataValue["status"] = .optionalStringConvertible(status)
metadataValue["responseSize"] = .optionalString(requestSize)
metadataValue["responseSize"] = .optionalString(responseSize)
metadataValue["userAgent"] = .optionalString(userAgent)
metadataValue["remoteIp"] = .optionalString(remoteIp)
metadataValue["serverIp"] = .optionalString(serverIp)
Expand Down

0 comments on commit b74757b

Please sign in to comment.