This is an automated email from the ASF dual-hosted git repository.

mmiller 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 4b5bc76305 Make TabletFile constructor log at trace
4b5bc76305 is described below

commit 4b5bc76305ad1f5146299f8995337847cb8df8c0
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Thu Jul 21 15:05:41 2022 -0400

    Make TabletFile constructor log at trace
---
 core/src/main/java/org/apache/accumulo/core/metadata/TabletFile.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/metadata/TabletFile.java 
b/core/src/main/java/org/apache/accumulo/core/metadata/TabletFile.java
index c7e4a22926..de974ca687 100644
--- a/core/src/main/java/org/apache/accumulo/core/metadata/TabletFile.java
+++ b/core/src/main/java/org/apache/accumulo/core/metadata/TabletFile.java
@@ -56,7 +56,7 @@ public class TabletFile implements Comparable<TabletFile> {
   public TabletFile(Path metaPath) {
     this.metaPath = Objects.requireNonNull(metaPath);
     String errorMsg = "Missing or invalid part of tablet file metadata entry: 
" + metaPath;
-    log.debug("Parsing TabletFile from {}", metaPath);
+    log.trace("Parsing TabletFile from {}", metaPath);
 
     // use Path object to step backwards from the filename through all the 
parts
     this.fileName = metaPath.getName();

Reply via email to