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 1452b2b01f
commit 46e4bffc2c
1 changed files with 2 additions and 2 deletions

View File

@ -653,11 +653,11 @@ public abstract class FSUtils {
if (s != null) s.close(); if (s != null) s.close();
} catch (IOException ignore) { } } 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; return;
} catch (IOException e) { } catch (IOException e) {
if (retries > 0) { 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); fs.delete(versionFile, false);
try { try {
if (wait > 0) { if (wait > 0) {