Skip to content

Commit

Permalink
print tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
noahrav committed Dec 28, 2023
1 parent a078dc4 commit 8d0dd95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace CUSubmitterService {
logRequest(request);

const std::string body = request.body();
log("Raw content : " + body);
log("Raw content :\n" + body);

rapidjson::Document document;
document.Parse(body.c_str());
Expand All @@ -88,7 +88,7 @@ namespace CUSubmitterService {
logRequest(request);

const std::string body = request.body();
log("Raw content : " + body);
log("Raw content :\n" + body);

rapidjson::Document document;
document.Parse(body.c_str());
Expand Down Expand Up @@ -144,7 +144,7 @@ namespace CUSubmitterService {
logRequest(request);

const std::string body = request.body();
log("Raw content : " + body);
log("Raw content :\n" + body);

rapidjson::Document document;
document.Parse(body.c_str());
Expand Down

0 comments on commit 8d0dd95

Please sign in to comment.