Skip to content

Commit

Permalink
Remove unnecessary console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Macumber committed Nov 18, 2023
1 parent f1cd94d commit daed5e3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/boardData.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ class BoardData {
delete data.tool;

var obj = this.board[id];
console.log('Updating object: ', obj);
if (typeof obj === "object") {
for (var i in data) {
obj[i] = data[i];
Expand Down Expand Up @@ -189,7 +188,6 @@ class BoardData {
processMessage(message) {
if (message._children) return this.processMessageBatch(message._children);
let id = message.id;
console.log('processMessage :: message : ', message);
switch (message.type) {
case "delete":
if (id) this.delete(id);
Expand Down

0 comments on commit daed5e3

Please sign in to comment.