This is an automated email from the ASF dual-hosted git repository. jmark99 pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new e55b961 Add missing format argument. (#2246) e55b961 is described below commit e55b961c10bde3c985a2fefde16965ab7562417e Author: Mark Owens <jmar...@apache.org> AuthorDate: Wed Aug 25 14:36:51 2021 -0400 Add missing format argument. (#2246) Add missing argument to log statement. The format call references one argument but no argument was supplied. Close #2246 --- .../src/main/java/org/apache/accumulo/compactor/Compactor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/compactor/src/main/java/org/apache/accumulo/compactor/Compactor.java b/server/compactor/src/main/java/org/apache/accumulo/compactor/Compactor.java index b63e1bd..c72e286 100644 --- a/server/compactor/src/main/java/org/apache/accumulo/compactor/Compactor.java +++ b/server/compactor/src/main/java/org/apache/accumulo/compactor/Compactor.java @@ -212,7 +212,7 @@ public class Compactor extends AbstractServer implements CompactorService.Iface var cancelId = Long.parseLong(new String(id, UTF_8)); if (cancelId >= job.getUserCompactionId()) { - LOG.info("Cancelling compaction {} because user compaction was canceled"); + LOG.info("Cancelling compaction {} because user compaction was canceled", ecid); JOB_HOLDER.cancel(job.getExternalCompactionId()); return; }