@@ -323,25 +323,25 @@ private DeltaProductionResult produceBatchedDeltas(List<SqsParsedMessage> messag
323323 * Writes the start-of-delta entry with null hash and window start timestamp.
324324 */
325325 private void writeStartOfDelta (ByteArrayOutputStream stream , long windowStart ) throws IOException {
326- LOGGER .debug ("writeStartOfDelta: windowStart={}, buffer pos={} limit={} cap={}" ,
326+ LOGGER .info ("writeStartOfDelta: windowStart={}, buffer pos={} limit={} cap={}" ,
327327 windowStart , buffer .position (), buffer .limit (), buffer .capacity ());
328328
329329 this .checkBufferSize (OptOutConst .EntrySize );
330330
331- LOGGER .debug ("After checkBufferSize: buffer pos={} limit={} cap={}" ,
331+ LOGGER .info ("After checkBufferSize: buffer pos={} limit={} cap={}" ,
332332 buffer .position (), buffer .limit (), buffer .capacity ());
333333
334334 buffer .put (OptOutUtils .nullHashBytes );
335335 buffer .put (OptOutUtils .nullHashBytes );
336336 buffer .putLong (windowStart );
337337
338- LOGGER .debug ("After writes: buffer pos={}" , buffer .position ());
338+ LOGGER .info ("After writes: buffer pos={}" , buffer .position ());
339339
340340 buffer .flip ();
341341 byte [] entry = new byte [buffer .remaining ()];
342342 buffer .get (entry );
343343
344- LOGGER .debug ("Writing {} bytes to stream, first 8 bytes of timestamp: {}" ,
344+ LOGGER .info ("Writing {} bytes to stream, first 8 bytes of timestamp: {}" ,
345345 entry .length , String .format ("%02x %02x %02x %02x %02x %02x %02x %02x" ,
346346 entry [32 ], entry [33 ], entry [34 ], entry [35 ], entry [36 ], entry [37 ], entry [38 ], entry [39 ]));
347347
0 commit comments