Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Oct 29, 2023
1 parent ed2b0a2 commit 55e7787
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/shared/log/Log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,15 +250,12 @@ export default class Log {
this.queuedProtos = [];
queuedStructs.forEach((item) => {
this.putStruct(item.key, item.timestamp, item.value, item.schemaType, false);
console.log(item);
});
queuedStructArrays.forEach((item) => {
this.putStruct(item.key, item.timestamp, item.value, item.schemaType, true);
console.log(item);
});
queuedProtos.forEach((item) => {
this.putProto(item.key, item.timestamp, item.value, item.schemaType);
console.log(item);
});
}

Expand Down

0 comments on commit 55e7787

Please sign in to comment.