This is an automated email from the ASF dual-hosted git repository.
dlmarion pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push:
new e46eded44c Added Key to error log message in VisibilityFilter (#6039)
e46eded44c is described below
commit e46eded44cf047432c2330c9c90874559c811963
Author: Dave Marion <[email protected]>
AuthorDate: Fri Jan 2 10:02:29 2026 -0500
Added Key to error log message in VisibilityFilter (#6039)
Closes #6016
---
.../java/org/apache/accumulo/core/iterators/user/VisibilityFilter.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/accumulo/core/iterators/user/VisibilityFilter.java
b/core/src/main/java/org/apache/accumulo/core/iterators/user/VisibilityFilter.java
index b1614dbca3..e1e6a023ac 100644
---
a/core/src/main/java/org/apache/accumulo/core/iterators/user/VisibilityFilter.java
+++
b/core/src/main/java/org/apache/accumulo/core/iterators/user/VisibilityFilter.java
@@ -111,7 +111,7 @@ public class VisibilityFilter extends Filter implements
OptionDescriber {
cache.put(testVis, bb);
return bb;
} catch (VisibilityParseException | BadArgumentException e) {
- log.error("Parse Error", e);
+ log.error("Parse Error with visibility of Key: {}", k, e);
return false;
}
}