🔨」 fix: removed debug print :D

This commit is contained in:
2025-05-04 15:45:24 +02:00
parent 4f93e0dcf5
commit 5f3d766cf7

View File

@ -6,7 +6,7 @@
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */ /* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/03 17:28:31 by mmoussou #+# #+# */ /* Created: 2025/02/03 17:28:31 by mmoussou #+# #+# */
/* Updated: 2025/05/04 13:31:10 by adjoly ### ########.fr */ /* Updated: 2025/05/04 15:45:05 by adjoly ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -44,7 +44,7 @@ std::string http::Response::str(void) const
response << "\r\n"; response << "\r\n";
response << this->_body; response << this->_body;
std::cout << "------------ RESPONSE -------------" << std::endl << response.str() << std::endl; /* std::cout << "------------ RESPONSE -------------" << std::endl << response.str() << std::endl; */
return (response.str()); return (response.str());
} }