Skip to content

Commit

Permalink
fix: remove performance.now()
Browse files Browse the repository at this point in the history
* not available on GAS
  • Loading branch information
ahochsteger committed Jun 18, 2023
1 parent 976c887 commit f18f93f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/utils/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export class Logger {
level: LogLevel = LogLevel.INFO,
...optionalParams: unknown[]
) {
performance.now()
console.log(
`[${new Date().toISOString()}] ${LogLevel[level]}: ${message}`,
...optionalParams,
Expand Down

1 comment on commit f18f93f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 98.55% 4637/4705
🟢 Branches 89.22% 472/529
🟢 Functions 96.62% 229/237
🟢 Lines 98.55% 4637/4705

Test suite run success

214 tests passing in 40 suites.

Report generated by 🧪jest coverage report action from f18f93f

Please sign in to comment.