forked from Yara724/api
21 lines
496 B
TypeScript
21 lines
496 B
TypeScript
import {
|
|
Injectable,
|
|
NestInterceptor,
|
|
ExecutionContext,
|
|
CallHandler,
|
|
} from "@nestjs/common";
|
|
import { Observable } from "rxjs";
|
|
import { tap } from "rxjs/operators";
|
|
|
|
@Injectable()
|
|
export class LoggingInterceptor implements NestInterceptor {
|
|
intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
|
|
console.log("Before...");
|
|
|
|
const now = Date.now();
|
|
return next
|
|
.handle()
|
|
.pipe(tap(() => console.log(`After... ${Date.now() - now}ms`)));
|
|
}
|
|
}
|