I am trying to log every page accessed in my angular application.
My route is like so:
const routes: Routes = [
{ path: ':id', component: AppComponent}
];
My app.component .ts onInit:
ngOnInit() {
console.log(this.router.url);
}
When I access /testing123
I want it to log "/testing123" But instead is logging "/" without the ID passed.