File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/proxy/processors/push-action Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments