Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active June 4, 2017 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/8f156fa9369169b4d7d36304fa2b9482 to your computer and use it in GitHub Desktop.
Save deque-blog/8f156fa9369169b4d7d36304fa2b9482 to your computer and use it in GitHub Desktop.
std::string repeat_n_with_logs(int n, std::string const& s)
{
return LOGGED_CALL_2(repeat_n, n, s);
}
//Calling
repeat_n_with_logs(3, "tutu");
//Produces trace:
"[TRACE] Call to \"repeat_n_\" with arguments: {n 3, s tutu}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment