(b content.Info)
| 88 | } |
| 89 | |
| 90 | func (c *commandContentList) outputLong(b content.Info) { |
| 91 | c.out.printStdout("%v %v %v %v %v+%v%v %v\n", |
| 92 | b.ContentID, |
| 93 | b.OriginalLength, |
| 94 | formatTimestamp(b.Timestamp()), |
| 95 | b.PackBlobID, |
| 96 | b.PackOffset, |
| 97 | maybeHumanReadableBytes(c.human, int64(b.PackedLength)), |
| 98 | c.deletedInfoString(b), |
| 99 | c.compressionInfoStringString(b), |
| 100 | ) |
| 101 | } |
| 102 | |
| 103 | func (c *commandContentList) outputCompressed(b content.Info) { |
| 104 | c.out.printStdout("%v length %v packed %v %v %v\n", |
no test coverage detected