Skip to content

Commit 716675e

Browse files
committed
Removed forcefully setting breakpoints on line 1
1 parent 93d32a5 commit 716675e

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

client/lib/client.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ module.exports = {
8383
let method = msgObj.method;
8484

8585
if (method !== METHOD_NAMES.RUN) {
86-
if ((method === METHOD_NAMES.LOG_ENABLE)) {
87-
let newMsg = {
88-
...msgObj,
89-
method: METHOD_NAMES.SET_BRK_PT,
90-
params: {"lineNumber": 1, "urlRegex": ".*\\.js"}
91-
};
92-
message = JSON.stringify(newMsg);
93-
}
86+
// if ((method === METHOD_NAMES.LOG_ENABLE)) {
87+
// let newMsg = {
88+
// ...msgObj,
89+
// method: METHOD_NAMES.SET_BRK_PT,
90+
// params: {"lineNumber": 1, "urlRegex": ".*\\.js"}
91+
// };
92+
// message = JSON.stringify(newMsg);
93+
// }
9494

9595
logIfVerbose(verbose, 'C-2-B', '>>>', message);
9696
if (bSocket.readyState === WebSocket.OPEN) {

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slappforge-debug-client",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "The local client component of SLAppForge AWS Lambda debugger toolkit. This should be installed as a global Node module in the develope machine.",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)