HBASE-15582 SnapshotManifestV1 too verbose when there are no regions
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/47baaed0 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/47baaed0 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/47baaed0 Branch: refs/heads/branch-1.0 Commit: 47baaed0c7185e8cccfcf9df7ea5b17268b94f37 Parents: d5eb7560 Author: Matteo Bertozzi <[email protected]> Authored: Fri Apr 1 20:55:21 2016 -0700 Committer: Matteo Bertozzi <[email protected]> Committed: Fri Apr 1 21:00:32 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hbase/snapshot/SnapshotManifestV1.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/47baaed0/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotManifestV1.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotManifestV1.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotManifestV1.java index 137acf3..6f00692 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotManifestV1.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotManifestV1.java @@ -116,7 +116,7 @@ public class SnapshotManifestV1 { final SnapshotDescription desc) throws IOException { FileStatus[] regions = FSUtils.listStatus(fs, snapshotDir, new FSUtils.RegionDirFilter(fs)); if (regions == null) { - LOG.info("No regions under directory:" + snapshotDir); + LOG.debug("No regions under directory:" + snapshotDir); return null; }
