Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created May 25, 2017 14:43
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/71be60afd1d974dfc69764dc5ebfaa0f to your computer and use it in GitHub Desktop.
Save deque-blog/71be60afd1d974dfc69764dc5ebfaa0f to your computer and use it in GitHub Desktop.
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