Skip to content

Commit ea8f1ec

Browse files
committed
Minor adjustment to request/response logging
1 parent 9a200c8 commit ea8f1ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http-client/client/src/main/java/io/avaje/http/client/RequestLogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private void headers(StringBuilder sb, String label, HttpHeaders headers) {
5959
if (!entries.isEmpty()) {
6060
sb.append(delimiter).append(label);
6161
for (Map.Entry<String, List<String>> entry : entries) {
62-
sb.append(entry.getKey()).append("=").append(entry.getValue()).append("; ");
62+
sb.append(entry.getKey()).append("=").append(entry.getValue()).append(", ");
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)