Browse Source

Merge pull request #2223 from combineads/see_meta_detail

Add the additional meta log
pull/2226/head
Chris Lu 3 years ago
committed by GitHub
parent
commit
c16e366fb2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      unmaintained/see_meta/see_meta.go

2
unmaintained/see_meta/see_meta.go

@ -60,7 +60,7 @@ func walkMetaFile(dst *os.File) error {
fmt.Fprintf(os.Stdout, "file %s %v\n", util.FullPath(fullEntry.Dir).Child(fullEntry.Entry.Name), fullEntry.Entry.Attributes.String())
for i, chunk := range fullEntry.Entry.Chunks {
fmt.Fprintf(os.Stdout, " chunk %d %v\n", i+1, chunk.String())
fmt.Fprintf(os.Stdout, " chunk: %d %v %d,%x%08x\n", i+1, chunk, chunk.Fid.VolumeId, chunk.Fid.FileKey, chunk.Fid.Cookie)
}
}

Loading…
Cancel
Save