mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
ebbdf78d52
This commit adds several utility functions to assist the migration. In particular, an updateLocator is added to gives us the next un-migration position in our buckets. This locator helps us to continue the job in case of an interrupted migration. It also serves as an indicator on whether the migration is finished or not.
15 lines
356 B
Go
15 lines
356 B
Go
package migration30
|
|
|
|
import (
|
|
"github.com/btcsuite/btclog"
|
|
)
|
|
|
|
// log is a logger that is initialized as disabled. This means the package will
|
|
// not perform any logging by default until a logger is set.
|
|
var log = btclog.Disabled
|
|
|
|
// UseLogger uses a specified Logger to output package logging info.
|
|
func UseLogger(logger btclog.Logger) {
|
|
log = logger
|
|
}
|