Skip to content

Instantly share code, notes, and snippets.

@uzbekdev1
Created July 6, 2022 20:02
Show Gist options
  • Save uzbekdev1/967115c98a1bee7b4443cd670dd86369 to your computer and use it in GitHub Desktop.
Save uzbekdev1/967115c98a1bee7b4443cd670dd86369 to your computer and use it in GitHub Desktop.
angular router logs
constructor(private router: Router) {
router.events.pipe(filter((e: Event): e is RouterEvent => e instanceof RouterEvent)).subscribe((e: RouterEvent) => {
console.log(e);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment