Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Failed to halt is normal if program finishes on its own #2313
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a committed Feb 12, 2019
1 parent 056a756 commit fd5a488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debugAdapter/goDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ class Delve {
}
}, err => {
const errMsg = err ? err.toString() : '';
logError('Failed to halt - ' + errMsg.toString());
log('Failed to halt - ' + errMsg.toString());
if (errMsg.endsWith('has exited with status 0')) {
if (timeoutToken) {
clearTimeout(timeoutToken);
Expand Down

0 comments on commit fd5a488

Please sign in to comment.