File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ import (
18
18
)
19
19
20
20
var (
21
- // log is a logger that is initialized with no output filters. This means the
22
- // package will not perform any logging by default until the caller requests
23
- // it.
21
+ // log is a logger that is initialized with no output filters. This
22
+ // means the package will not perform any logging by default until the
23
+ // caller requests it.
24
24
log btclog.Logger
25
25
)
26
26
@@ -50,7 +50,7 @@ func UseLogger(logger btclog.Logger) {
50
50
51
51
// SetupLoggers initializes all package-global logger variables.
52
52
func SetupLoggers (root * build.RotatingLogWriter ) {
53
- // Add the GrUB logger.
53
+ // Add the lightning-terminal root logger.
54
54
lnd .AddSubLogger (root , Subsystem , UseLogger )
55
55
56
56
// Add faraday loggers to lnd's root logger.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ windows-386 \
12
12
windows-amd64 \
13
13
windows-arm
14
14
15
- LND_RELEASE_TAGS = grub autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc
15
+ LND_RELEASE_TAGS = litd autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc
16
16
17
17
# By default we will build all systems. But with the 'sys' tag, a specific
18
18
# system can be specified. This is useful to release for a subset of
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ func (g *LightningTerminal) Run() error {
132
132
// port at a time because we can only pass in one pre-configured RPC
133
133
// listener into lnd.
134
134
if len (g .cfg .Lnd .RPCListeners ) > 1 {
135
- return fmt .Errorf ("grub only supports one RPC listener at a " +
135
+ return fmt .Errorf ("litd only supports one RPC listener at a " +
136
136
"time" )
137
137
}
138
138
rpcAddr := g .cfg .Lnd .RPCListeners [0 ]
You can’t perform that action at this time.
0 commit comments