diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2021-07-29 02:08:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-29 02:08:19 -0700 |
| commit | c16e366fb25a491b92b37c001cbd430562e6e604 (patch) | |
| tree | 8d3ce4e68a59e1002dd1182d389aaeddaa106e41 | |
| parent | 4deac06da0fc2dd283530b4763793116042ccbde (diff) | |
| parent | 285fdd2dd58cd215ae3f157f2acef2c28811ff64 (diff) | |
| download | seaweedfs-c16e366fb25a491b92b37c001cbd430562e6e604.tar.xz seaweedfs-c16e366fb25a491b92b37c001cbd430562e6e604.zip | |
Merge pull request #2223 from combineads/see_meta_detail
Add the additional meta log
| -rw-r--r-- | unmaintained/see_meta/see_meta.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unmaintained/see_meta/see_meta.go b/unmaintained/see_meta/see_meta.go index 452badfd6..9e496430c 100644 --- a/unmaintained/see_meta/see_meta.go +++ b/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) } } |
