More detailed logging of error message on S3DataSegmentMover

This commit is contained in:
Charles Allen 2015-07-27 13:28:54 -07:00
parent 5f1f4424eb
commit 3f901e7291
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public class S3DataSegmentMover implements DataSegmentMover
); );
} }
catch (ServiceException e) { catch (ServiceException e) {
throw new SegmentLoadingException(e, "Unable to move segment[%s]", segment.getIdentifier()); throw new SegmentLoadingException(e, "Unable to move segment[%s]: [%s]", segment.getIdentifier(), e);
} }
} }