This commit is contained in:
LexLuthr 2024-05-23 16:34:28 +05:30 committed by GitHub
parent c1f99c58c5
commit 9983c466ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -266,12 +266,14 @@ func SectorsStatusCmd(getActorAddress ActorAddressGetter, getOnDiskInfo OnDiskIn
} }
if cctx.Bool("log") { if cctx.Bool("log") {
fmt.Printf("--------\nEvent Log:\n") if getOnDiskInfo != nil {
fmt.Printf("--------\nEvent Log:\n")
for i, l := range status.Log { for i, l := range status.Log {
fmt.Printf("%d.\t%s:\t[%s]\t%s\n", i, time.Unix(int64(l.Timestamp), 0), l.Kind, l.Message) fmt.Printf("%d.\t%s:\t[%s]\t%s\n", i, time.Unix(int64(l.Timestamp), 0), l.Kind, l.Message)
if l.Trace != "" { if l.Trace != "" {
fmt.Printf("\t%s\n", l.Trace) fmt.Printf("\t%s\n", l.Trace)
}
} }
} }
} }