prysm-pulse/runtime/logging/blob.go
Radosław Kapka 0b261cba5e
Unify log fields (#13654)
* unify fields

* fix tests
2024-02-22 22:40:36 +00:00

33 lines
1.0 KiB
Go

package logging
import (
"fmt"
"github.com/prysmaticlabs/prysm/v5/consensus-types/blocks"
"github.com/sirupsen/logrus"
)
// BlobFields extracts a standard set of fields from a BlobSidecar into a logrus.Fields struct
// which can be passed to log.WithFields.
func BlobFields(blob blocks.ROBlob) logrus.Fields {
return logrus.Fields{
"slot": blob.Slot(),
"proposerIndex": blob.ProposerIndex(),
"blockRoot": fmt.Sprintf("%#x", blob.BlockRoot()),
"parentRoot": fmt.Sprintf("%#x", blob.ParentRoot()),
"kzgCommitment": fmt.Sprintf("%#x", blob.KzgCommitment),
"index": blob.Index,
}
}
// BlockFieldsFromBlob extracts the set of fields from a given BlobSidecar which are shared by the block and
// all other sidecars for the block.
func BlockFieldsFromBlob(blob blocks.ROBlob) logrus.Fields {
return logrus.Fields{
"slot": blob.Slot(),
"proposerIndex": blob.ProposerIndex(),
"blockRoot": fmt.Sprintf("%#x", blob.BlockRoot()),
"parentRoot": fmt.Sprintf("%#x", blob.ParentRoot()),
}
}