lbcd/database/log.go

64 lines
1.5 KiB
Go
Raw Normal View History

2014-01-08 23:54:52 -06:00
// Copyright (c) 2013-2014 Conformal Systems LLC.
2013-05-28 19:07:21 -05:00
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package database
2013-05-28 19:07:21 -05:00
import (
"errors"
"io"
2014-07-02 19:47:24 -05:00
"github.com/btcsuite/btclog"
2013-05-28 19:07:21 -05:00
)
// 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.
2013-11-21 09:48:16 -06:00
var log btclog.Logger
2013-05-28 19:07:21 -05:00
// The default amount of logging is none.
func init() {
DisableLog()
}
// DisableLog disables all library log output. Logging output is disabled
2013-11-21 09:48:16 -06:00
// by default until either UseLogger or SetLogWriter are called.
2013-05-28 19:07:21 -05:00
func DisableLog() {
2013-11-21 09:48:16 -06:00
log = btclog.Disabled
2013-05-28 19:07:21 -05:00
}
// UseLogger uses a specified Logger to output package logging info.
// This should be used in preference to SetLogWriter if the caller is also
2013-11-21 09:48:16 -06:00
// using btclog.
func UseLogger(logger btclog.Logger) {
2013-05-28 19:07:21 -05:00
log = logger
}
// SetLogWriter uses a specified io.Writer to output package logging info.
// This allows a caller to direct package logging output without needing a
2013-11-21 09:48:16 -06:00
// dependency on seelog. If the caller is also using btclog, UseLogger should
2013-05-28 19:07:21 -05:00
// be used instead.
2013-11-21 09:48:16 -06:00
func SetLogWriter(w io.Writer, level string) error {
2013-05-28 19:07:21 -05:00
if w == nil {
return errors.New("nil writer")
}
2013-11-21 09:48:16 -06:00
lvl, ok := btclog.LogLevelFromString(level)
if !ok {
return errors.New("invalid log level")
}
l, err := btclog.NewLoggerFromWriter(w, lvl)
2013-05-28 19:07:21 -05:00
if err != nil {
return err
}
UseLogger(l)
return nil
}
// GetLog returns the currently active logger.
2013-11-21 09:48:16 -06:00
func GetLog() btclog.Logger {
2013-05-28 19:07:21 -05:00
return log
}