dont show header values

This commit is contained in:
moneroexamples 2016-08-20 18:28:53 +08:00
parent 2679da08ce
commit 2be6f8074a
1 changed files with 2 additions and 2 deletions

View File

@ -103,8 +103,8 @@ int main(int ac, const char* av[]) {
CROW_ROUTE(app, "/")
([&](const crow::request& req) {
for (const auto& m : req.headers)
cout << m.first << ": " << m.second << endl;
//for (const auto& m : req.headers)
// cout << m.first << ": " << m.second << endl;
return xmrblocks.index2();
});