Skip to content

Commit

Permalink
Remove unnecessary console logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
toomim committed Oct 19, 2023
1 parent 80318be commit 7a01440
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "statebus",
"version": "7.0.17",
"version": "7.0.18",
"description": "Synchronize state.",
"main": "statebus.js",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions statebus.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@
var key = obj,
obj = bus.cache[key]

console.log('set.fire: applying the patch!', {
key: key,
obj: obj,
patch: t.patch[0]
})
// console.log('set.fire: applying the patch!', {
// key: key,
// obj: obj,
// patch: t.patch[0]
// })
obj.val = apply_patch(obj.val, t.patch[0])
}

Expand Down Expand Up @@ -1791,7 +1791,7 @@
: parseInt(numstr)
}

console.log('Getting path', JSON.stringify(path), 'in obj', obj)
// console.log('Getting path', JSON.stringify(path), 'in obj', obj)

while (true) {
var match = path_segment.exec(path),
Expand Down

0 comments on commit 7a01440

Please sign in to comment.