[js][perf] remove logging - no logger attached to perf class so was red-boxing
This commit is contained in:
parent
b7b4febe3f
commit
2993b9b697
@ -10,17 +10,14 @@ export default class Trace {
|
||||
}
|
||||
|
||||
start() {
|
||||
this.perf.log.debug(`Starting trace for ${this.identifier}`);
|
||||
FirebasePerformance.start(this.identifier);
|
||||
}
|
||||
|
||||
stop() {
|
||||
this.perf.log.debug(`Stopping trace for ${this.identifier}`);
|
||||
FirebasePerformance.stop(this.identifier);
|
||||
}
|
||||
|
||||
incrementCounter(event: string) {
|
||||
this.perf.log.debug(`Incrementing counter event ${event} trace for ${this.identifier}`);
|
||||
FirebasePerformance.incrementCounter(this.identifier, event);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user