HBASE-11915 Document and test 0.94 -> 1.0.0 update -- ADDENDUM

This commit is contained in:
stack 2014-10-22 22:10:52 -07:00
parent 84f3549d5e
commit 96f84594ee
1 changed files with 2 additions and 2 deletions

View File

@ -656,11 +656,11 @@ public abstract class FSUtils {
if (s != null) s.close();
} catch (IOException ignore) { }
}
LOG.debug("Created version file at " + rootdir.toString() + " with version=" + version);
LOG.info("Created version file at " + rootdir.toString() + " with version=" + version);
return;
} catch (IOException e) {
if (retries > 0) {
LOG.warn("Unable to create version file at " + rootdir.toString() + ", retrying", e);
LOG.debug("Unable to create version file at " + rootdir.toString() + ", retrying", e);
fs.delete(versionFile, false);
try {
if (wait > 0) {