Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created May 25, 2017 14:43
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
std::string repeat_n_with_logs(int n, std::string const& s)
{
return LOGGED_CALL(repeat_n, n, s);
}
//Calling
repeat_n_with_logs(3, "tutu");
//Produces trace:
"[TRACE] Call to \"repeat_n_\" with arguments: (3, tutu)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment