This is an automated email from the ASF dual-hosted git repository.
ddanielr 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 19d88ae398 removed Log (#6173)
19d88ae398 is described below
commit 19d88ae3982e9002dea218c4867a532d91720eaa
Author: Arbaaz Khan <[email protected]>
AuthorDate: Tue Mar 10 13:04:36 2026 -0400
removed Log (#6173)
* removed Log and fixed comment
---
.../main/java/org/apache/accumulo/core/clientImpl/Namespaces.java | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git
a/core/src/main/java/org/apache/accumulo/core/clientImpl/Namespaces.java
b/core/src/main/java/org/apache/accumulo/core/clientImpl/Namespaces.java
index 4368b31896..a80ab369b3 100644
--- a/core/src/main/java/org/apache/accumulo/core/clientImpl/Namespaces.java
+++ b/core/src/main/java/org/apache/accumulo/core/clientImpl/Namespaces.java
@@ -124,16 +124,14 @@ public class Namespaces {
}
/**
- * Look for namespace ID in ZK. Fail quietly by logging and returning null.
+ * Look for namespace ID in ZK. Fail quietly by returning null.
*/
public static NamespaceId lookupNamespaceId(ClientContext context, String
namespaceName) {
NamespaceId id = null;
try {
id = getNamespaceId(context, namespaceName);
} catch (NamespaceNotFoundException e) {
- if (log.isDebugEnabled()) {
- log.debug("Failed to find namespace ID from name: " + namespaceName,
e);
- }
+ return null;
}
return id;
}