Hide the "Not supported" notice. Minor cleanups

This commit is contained in:
Henrik Rydgård
2025-01-08 09:24:32 +01:00
parent 6922483460
commit baf6bcc41e
7 changed files with 19 additions and 13 deletions
+1 -1
View File
@@ -429,7 +429,7 @@ int Client::ReadResponseHeaders(net::Buffer *readbuf, std::vector<std::string> &
int sz = readbuf->TakeLineCRLF(&line);
if (!sz || sz < 0)
break;
INFO_LOG(Log::HTTP, "Header line: %s", line.c_str());
VERBOSE_LOG(Log::HTTP, "Header line: %s", line.c_str());
responseHeaders.push_back(line);
}