Add space

FossilOrigin-Name: 7a1c6e8464ec5ffb9491e7d9b3fbf4cae3cccae58316c327229b3df2f8bf23b8
This commit is contained in:
nekobit 2022-10-11 01:32:12 +00:00
parent 06517ba0a2
commit 8981ad724f

View file

@ -69,5 +69,5 @@ std::optional<HTTP::Response const> Server::handle_request(HTTP::Request &reques
void Server::log_request(const HTTP::Request& request)
{
using namespace std::string_literals;
Logger::instance() << std::string(request.get_type_string()) + request.get_url();
Logger::instance() << std::string(request.get_type_string()) + " " + request.get_url();
}