Skip to content

Commit cf76665

Browse files
committed
chore: fix metric logging
1 parent d6413ce commit cf76665

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/proxy/processors/push-action/metrics.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ export class PerformanceTimer {
1717
start(operation: string): void {
1818
this.operation = operation;
1919
this.startTime = Date.now();
20-
this.step.log(`🚀 ${operation} started`);
20+
this.step.log(`${operation} started`);
2121
}
2222

2323
mark(message: string): void {
2424
if (this.startTime > 0) {
2525
const elapsed = Date.now() - this.startTime;
26-
this.step.log(`${message}: ${elapsed}ms`);
26+
this.step.log(`${message}: ${elapsed}ms`);
2727
}
2828
}
2929

3030
end(): void {
3131
if (this.startTime > 0) {
3232
const totalTime = Date.now() - this.startTime;
33-
this.step.log(`${this.operation} completed: ${totalTime}ms`);
33+
this.step.log(`${this.operation} completed: ${totalTime}ms`);
3434
this.startTime = 0;
3535
}
3636
}

0 commit comments

Comments
 (0)