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/509a7497 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/509a7497 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/509a7497 Branch: refs/heads/branch-1.2 Commit: 509a749746c85ef67eacabefa72b2b655749ce6c Parents: a1b176c Author: Matteo Bertozzi <[email protected]> Authored: Fri Apr 1 20:55:21 2016 -0700 Committer: Matteo Bertozzi <[email protected]> Committed: Fri Apr 1 20:59:18 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/509a7497/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; }
