|
@@ -405,10 +405,11 @@ public final class CopyListingFileStatus implements Writable {
|
|
|
public String toString() {
|
|
|
StringBuilder sb = new StringBuilder(super.toString());
|
|
|
sb.append('{');
|
|
|
- sb.append(this.getPath().toString());
|
|
|
+ sb.append(this.getPath() == null ? "" : this.getPath().toString());
|
|
|
sb.append(" length = ").append(this.getLen());
|
|
|
sb.append(" aclEntries = ").append(aclEntries);
|
|
|
sb.append(", xAttrs = ").append(xAttrs);
|
|
|
+ sb.append(", modTime = ").append(modificationTime);
|
|
|
if (isSplit()) {
|
|
|
sb.append(", chunkOffset = ").append(this.getChunkOffset());
|
|
|
sb.append(", chunkLength = ").append(this.getChunkLength());
|