Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 4b71a2c

Browse files
chore: improve fetching breakpoints error message (#848)
The error message `Unable to fetch breakpoints` is misleading since it makes it seem like the debug agent has stopped working. Instead it has just re-registered collecting breakpoints. The error message has been updated to address this.
1 parent 221c9ae commit 4b71a2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agent/debuglet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ export class Debuglet extends EventEmitter {
712712
(err, response, body) => {
713713
if (err) {
714714
that.logger.error(
715-
'Unable to fetch breakpoints – stopping fetcher',
715+
'Error fetching breakpoints – scheduling retry',
716716
err
717717
);
718718
that.fetcherActive = false;

0 commit comments

Comments
 (0)