Skip to content

Commit

Permalink
fix: remove unnecessary console.log statement (#8437)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheeKia authored Aug 19, 2024
1 parent f7c6dc4 commit 05c34c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/perfect-weeks-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@firebase/app': patch
---

Removed an unnecessary console.log statement.
1 change: 0 additions & 1 deletion packages/app/src/heartbeatService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ export class HeartbeatServiceImpl implements HeartbeatService {
// service, not the browser user agent.
const agent = platformLogger.getPlatformInfoString();
const date = getUTCDateString();
console.log('heartbeats', this._heartbeatsCache?.heartbeats);
if (this._heartbeatsCache?.heartbeats == null) {
this._heartbeatsCache = await this._heartbeatsCachePromise;
// If we failed to construct a heartbeats cache, then return immediately.
Expand Down

0 comments on commit 05c34c9

Please sign in to comment.