NestJS - Interceptors
Given this LoggingInterceptor code snippet, what will be logged when a request is handled?
intercept(context, next) {
const now = Date.now();
return next.handle().pipe(
tap(() => console.log(`Request took ${Date.now() - now}ms`))
);
}