HBASE-11674 LoadIncrementalHFiles should be more verbose after unrecoverable error (Jan Lukavsky)

This commit is contained in:
Nick Dimiduk 2014-08-05 15:21:00 -07:00
parent 074f83c80b
commit 51cc4fed0a
1 changed files with 2 additions and 1 deletions

View File

@ -692,7 +692,8 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
// success // success
return toRetry; return toRetry;
} catch (IOException e) { } catch (IOException e) {
LOG.error("Encountered unrecoverable error from region server", e); LOG.error("Encountered unrecoverable error from region server, additional details: "
+ svrCallable.getExceptionMessageAdditionalDetail(), e);
throw e; throw e;
} }
} }