diff --git a/lib/emitter.ml b/lib/emitter.ml index 668f054..5ce221e 100644 --- a/lib/emitter.ml +++ b/lib/emitter.ml @@ -50,9 +50,3 @@ let serialise t chunk = t.pos <- t.pos + input_sz) let create = { buf = Bytes.create 4096; pos = 0 } - -let print_debug t = - print_endline - ("pos is " ^ string_of_int t.pos ^ "\nsz is " - ^ string_of_int (Bytes.length t.buf) - ^ "\ncontents are: " ^ String.of_bytes t.buf)