Commit f2b42848 authored by Ewen Cheslack-Postava's avatar Ewen Cheslack-Postava Committed by GitHub
Browse files

Merge pull request #17 from confluentinc/simple-log-fix

Fix mixup in order of log arguments that causes a stacktrace to be omitted.
parents c51cd00c 66c197ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ public class BulkProcessor implements Runnable {

      client.execute(batch, callback);
    } catch (Throwable t) {
      log.warn("Failed to execute bulk request {}.", t, executionId);
      log.warn("Failed to execute bulk request {}.", executionId, t);
      try {
        listener.afterBulk(executionId, batch, t);
      } catch (Throwable tt) {