Skip to content

Commit

Permalink
added eol commas
Browse files Browse the repository at this point in the history
  • Loading branch information
tanghel committed Nov 12, 2024
1 parent eebc30a commit e1294f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { PerformanceProfiler } from "../profilers/performance.profiler";
export class LoggingInterceptor implements NestInterceptor {
constructor(
private readonly metricsService: MetricsService,
private readonly onRequest?: (apiFunction: string, durationMs: number, context: ExecutionContext) => void
private readonly onRequest?: (apiFunction: string, durationMs: number, context: ExecutionContext) => void,
) { }

intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { CpuProfiler } from "../profilers/cpu.profiler";
export class RequestCpuTimeInterceptor implements NestInterceptor {
constructor(
private readonly metricsService: MetricsService,
private readonly onRequest?: (apiFunction: string, durationMs: number, context: ExecutionContext) => void
private readonly onRequest?: (apiFunction: string, durationMs: number, context: ExecutionContext) => void,
) { }

intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
Expand Down

0 comments on commit e1294f5

Please sign in to comment.