mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Add stability-tests * Fix requires * Fix golint errors * Update README.md * Remove payloadHash from everywhere * don't run vet on kaspad in stability-tests/install_and_test
36 lines
967 B
Go
36 lines
967 B
Go
package rpc
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/infrastructure/logger"
|
|
"github.com/kaspanet/kaspad/util/panics"
|
|
)
|
|
|
|
// log is a logger that is initialized with no output filters. This
|
|
// means the package will not perform any logging by default until the caller
|
|
// requests it.
|
|
var log *logger.Logger
|
|
var spawn func(name string, spawnedFunction func())
|
|
|
|
const logSubsytem = "CRPC"
|
|
|
|
// The default amount of logging is none.
|
|
func init() {
|
|
DisableLog()
|
|
}
|
|
|
|
// DisableLog disables all library log output. Logging output is disabled
|
|
// by default until UseLogger is called.
|
|
func DisableLog() {
|
|
backend := logger.NewBackend()
|
|
log = backend.Logger(logSubsytem)
|
|
log.SetLevel(logger.LevelOff)
|
|
spawn = panics.GoroutineWrapperFunc(log)
|
|
}
|
|
|
|
// UseLogger uses a specified Logger to output package logging info.
|
|
func UseLogger(backend *logger.Backend, level logger.Level) {
|
|
log = backend.Logger(logSubsytem)
|
|
log.SetLevel(level)
|
|
spawn = panics.GoroutineWrapperFunc(log)
|
|
}
|