Skip to content

Instantly share code, notes, and snippets.

@k1r0s
Created August 20, 2017 10:22
Show Gist options
  • Select an option

  • Save k1r0s/f9a32d4504ba986a7d4b38c498b24986 to your computer and use it in GitHub Desktop.

Select an option

Save k1r0s/f9a32d4504ba986a7d4b38c498b24986 to your computer and use it in GitHub Desktop.
// normal aproach
public doStuff () {
console.log(`we entered doStuff method with ${JSON.stringify(arguments)}`);
...
const result;
console.log(`we exit doStuff method with ${JSON.stringify(result)}`)
return result;
}
// advice aproach
@Log
public doStuff () {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment