Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Fix extension name in error messages, fixes #98
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Mar 18, 2016
1 parent eb6f3df commit 326dd27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webkit/webKitDebugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class WebKitDebugSession extends DebugSession {
e => {
const eStr = e ? e.message : 'Unknown error';
if (eStr === 'Error: unknowncommand') {
this.sendErrorResponse(response, 1014, '[webkit-debug-adapter] Unrecognized request: ' + request.command, null, ErrorDestination.Telemetry);
this.sendErrorResponse(response, 1014, '[debugger-for-chrome] Unrecognized request: ' + request.command, null, ErrorDestination.Telemetry);
return;
}

Expand All @@ -79,7 +79,7 @@ export class WebKitDebugSession extends DebugSession {
} else {
// These errors show up in the message bar at the top (or nowhere), sometimes not obvious that they
// come from the adapter
response.message = '[webkit-debug-adapter] ' + eStr;
response.message = '[debugger-for-chrome] ' + eStr;
Logger.log('Error: ' + e ? e.stack : eStr);
}

Expand Down

0 comments on commit 326dd27

Please sign in to comment.