Skip to content

Commit

Permalink
fix: telemetry slient on error
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jul 16, 2021
1 parent 82720a4 commit 38a5c47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class Telemetry {
})
}
catch (e) {
Log.error(e)
Log.error(e, false)
}
}
else {
Expand Down Expand Up @@ -155,7 +155,7 @@ export class Telemetry {
})
}
catch (e) {
Log.error(e)
Log.error(e, false)
}
}

Expand Down Expand Up @@ -185,7 +185,7 @@ export class Telemetry {
})
}
catch (e) {
Log.error(e)
Log.error(e, false)
}
}
}

0 comments on commit 38a5c47

Please sign in to comment.