Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion action/protocol/poll/consortium.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (cc *consortiumCommittee) Start(ctx context.Context, sr protocol.StateReade
ethAddr := crypto.CreateAddress(common.BytesToAddress(caller.Bytes()), consortiumCommitteeContractNonce)
iotxAddr, _ := address.FromBytes(ethAddr.Bytes())
cc.contract = iotxAddr.String()
log.L().Info("Loaded consortium committee contract", zap.String("address", iotxAddr.String()))
log.L().Debug("Loaded consortium committee contract", zap.String("address", iotxAddr.String()))

return nil, nil
}
Expand Down
2 changes: 1 addition & 1 deletion action/protocol/poll/governance_protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (p *governanceChainCommitteeProtocol) CreateGenesisStates(
if err == nil || errors.Cause(err) != db.ErrNotExist {
break
}
log.L().Info("calling committee,waiting for a while", zap.Int64("duration", int64(p.initialCandidatesInterval.Seconds())), zap.String("unit", " seconds"))
log.L().Debug("calling committee,waiting for a while", zap.Int64("duration", int64(p.initialCandidatesInterval.Seconds())), zap.String("unit", " seconds"))
time.Sleep(p.initialCandidatesInterval)
}
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions server/itx/heartbeat.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (h *HeartbeatHandler) Log() {
peers = nil
}
numPeers := len(peers)
h.l.Info("Node status.",
h.l.Debug("Node status.",
zap.Int("numPeers", numPeers),
zap.String("pendingDispatcherEvents", "{"+strings.Join(events, ", ")+"}"),
zap.String("pendingDispatcherEventsAudit", string(dpEvtsAudit)))
Expand Down Expand Up @@ -143,7 +143,7 @@ func (h *HeartbeatHandler) Log() {
actPoolCapacity := c.ActionPool().GetCapacity()
targetHeight := c.BlockSync().TargetHeight()

h.l.Info("chain service status",
h.l.Debug("chain service status",
zap.Int("rolldposEvents", numPendingEvts),
zap.String("fsmState", string(state)),
zap.Uint64("blockchainHeight", height),
Expand Down