This modifies the progress logger to make it a bit more generic so that it can support logging header sync progress in the future too and modernizes the code while here.
22 lines
649 B
Go
22 lines
649 B
Go
// Copyright (c) 2020-2021 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
/*
|
|
Package progresslog provides periodic logging for block processing.
|
|
|
|
Tests are included to ensure proper functionality.
|
|
|
|
## Feature Overview
|
|
|
|
- Maintains cumulative totals about blocks between each logging interval
|
|
- Total number of blocks
|
|
- Total number of transactions
|
|
- Total number of votes
|
|
- Total number of tickets
|
|
- Total number of revocations
|
|
- Logs all cumulative data every 10 seconds
|
|
- Immediately logs any outstanding data when requested by the caller
|
|
*/
|
|
package progresslog
|