Skip to content

Commit

Permalink
[HTTP] fix log message of HTTP layer
Browse files Browse the repository at this point in the history
  • Loading branch information
moniwe authored and azoitl committed Mar 24, 2024
1 parent c148186 commit 6232cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/HTTP/httplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ void CHttpComLayer::createRequest() {
case e_POST:
CHttpParser::createPutPostRequest(mRequest, mHost, mPort, mPath, mAuth, mParams, mBody, mContentType, mRequestType);
DEVLOG_INFO(
"[HTTP Layer] FB with PUT/POST request initialized. Host: %s, Path: %s:%d, Parameters: '%s'\n",
mHost.c_str(), mPath.c_str(), mPort, mParams.c_str());
"[HTTP Layer] FB with PUT/POST request initialized. Host: %s:%d, Path: %s, Parameters: '%s'\n",
mHost.c_str(), mPort, mPath.c_str(), mParams.c_str());
break;
case e_GET:
CHttpParser::createGetRequest(mRequest, mHost, mPort, mPath, mAuth, mParams);
Expand Down

0 comments on commit 6232cc1

Please sign in to comment.