diff --git a/packages/taiko-client/prover/proof_submitter/proof_submitter.go b/packages/taiko-client/prover/proof_submitter/proof_submitter.go index b87f992772..cf9d76227f 100644 --- a/packages/taiko-client/prover/proof_submitter/proof_submitter.go +++ b/packages/taiko-client/prover/proof_submitter/proof_submitter.go @@ -164,7 +164,12 @@ func (s *ProofSubmitter) RequestProof(ctx context.Context, meta metadata.TaikoBl } // Check if the proof buffer is full. if s.proofBuffer.Enabled() && uint64(s.proofBuffer.Len()) >= s.proofBuffer.MaxLength { - log.Warn("Proof buffer is full now", "blockID", meta.GetBlockID()) + log.Warn( + "Proof buffer is full now", + "blockID", meta.GetBlockID(), + "tier", meta.GetMinTier(), + "size", s.proofBuffer.Len(), + ) return errBufferOverflow } // Check if there is a need to generate proof