Skip to content

Commit d8eb1b4

Browse files
committed
remove logging
1 parent b4b5ca4 commit d8eb1b4

File tree

4 files changed

+42
-116
lines changed

4 files changed

+42
-116
lines changed

src/field.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ Field.prototype.resolve = function resolve() {
286286
if (this.options) {
287287
if (this.options.packed === true || this.options.packed !== undefined && this.resolvedType && !(this.resolvedType instanceof Enum))
288288
delete this.options.packed;
289-
console.log('in Field function')
290289
if (!Object.keys(this.options).length)
291290
this.options = undefined;
292291
}
@@ -300,7 +299,6 @@ Field.prototype.resolve = function resolve() {
300299
Object.freeze(this.typeDefault); // long instances are meant to be immutable anyway (i.e. use small int cache that even requires it)
301300

302301
} else if (this.bytes && typeof this.typeDefault === "string") {
303-
console.log('in Field function and this.bytes && typeof this.typeDefault')
304302
var buf;
305303
if (util.base64.test(this.typeDefault))
306304
util.base64.decode(this.typeDefault, buf = util.newBuffer(util.base64.length(this.typeDefault)), 0);

0 commit comments

Comments
 (0)