Browse Source

multi: init subsystem loggers via build pkg

master
Conner Fromknecht 6 years ago
parent
commit
59b459674d
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7
  1. 9
      autopilot/log.go
  2. 9
      chainntnfs/log.go
  3. 10
      channeldb/log.go
  4. 9
      contractcourt/log.go
  5. 9
      discovery/log.go
  6. 9
      htlcswitch/log.go
  7. 6
      lnwallet/log.go
  8. 9
      routing/chainview/log.go
  9. 5
      routing/log.go
  10. 2
      signal/log.go

9
autopilot/log.go

@ -1,6 +1,9 @@
package autopilot
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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
@ -9,13 +12,13 @@ var log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("ATPL", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

9
chainntnfs/log.go

@ -1,6 +1,9 @@
package chainntnfs
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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
@ -9,13 +12,13 @@ var Log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("NTFN", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
Log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

10
channeldb/log.go

@ -1,21 +1,23 @@
package channeldb
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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 btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("CHDB", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

9
contractcourt/log.go

@ -1,6 +1,9 @@
package contractcourt
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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
@ -9,13 +12,13 @@ var log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("CNCT", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

9
discovery/log.go

@ -1,6 +1,9 @@
package discovery
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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
@ -9,13 +12,13 @@ var log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("DISC", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

9
htlcswitch/log.go

@ -1,6 +1,9 @@
package htlcswitch
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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
@ -9,13 +12,13 @@ var log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("HSWC", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

6
lnwallet/log.go

@ -5,6 +5,8 @@ import (
"github.com/btcsuite/btcwallet/chain"
btcwallet "github.com/btcsuite/btcwallet/wallet"
"github.com/btcsuite/btcwallet/wtxmgr"
"github.com/lightningnetwork/lnd/build"
)
// walletLog is a logger that is initialized with no output filters. This
@ -14,13 +16,13 @@ var walletLog btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("LNWL", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
walletLog = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

9
routing/chainview/log.go

@ -1,6 +1,9 @@
package chainview
import "github.com/btcsuite/btclog"
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// 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
@ -9,13 +12,13 @@ var log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("CRTR", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until either UseLogger or SetLogWriter are called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

5
routing/log.go

@ -2,6 +2,7 @@ package routing
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
"github.com/lightningnetwork/lnd/routing/chainview"
)
@ -12,13 +13,13 @@ var log btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("CRTR", nil))
}
// DisableLog disables all library log output. Logging output is disabled by
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info. This

2
signal/log.go

@ -15,7 +15,7 @@ func init() {
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
log = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.

Loading…
Cancel
Save