Skip to content

Commit

Permalink
Merge branch 'master' of github.com:bstarynk/helpcovid
Browse files Browse the repository at this point in the history
  • Loading branch information
achakravarti committed Apr 4, 2020
2 parents bd2d352 + f42f591 commit e15d232
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hcv_views.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,10 @@ hcv_profile_view_get(const httplib::Request& req, httplib::Response& resp,
HCV_DEBUGOUT("hcv_profile_view_get reqpath:" << req.path
<< " req#" << reqnum);

return hcv_expand_template_file(thtml, &data);
std::string str = hcv_expand_template_file(thtml, &data);
HCV_DEBUGOUT("hcv_profile_view_get reqpath:" << req.path
<< " req#" << reqnum << " gives " << str.size() << " bytes");
return str;
} // end hcv_profile_view_get


Expand Down

0 comments on commit e15d232

Please sign in to comment.