Skip to content

Commit 1519a1b

Browse files
committed
channelnotifier: remove dead logging code
1 parent e1385af commit 1519a1b

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

channelnotifier/log.go

-16
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,3 @@ func DisableLog() {
2727
func UseLogger(logger btclog.Logger) {
2828
log = logger
2929
}
30-
31-
// logClosure is used to provide a closure over expensive logging operations so
32-
// don't have to be performed when the logging level doesn't warrant it.
33-
type logClosure func() string // nolint:unused
34-
35-
// String invokes the underlying function and returns the result.
36-
func (c logClosure) String() string {
37-
return c()
38-
}
39-
40-
// newLogClosure returns a new closure over a function that returns a string
41-
// which itself provides a Stringer interface so that it can be used with the
42-
// logging system.
43-
func newLogClosure(c func() string) logClosure { // nolint:unused
44-
return logClosure(c)
45-
}

0 commit comments

Comments
 (0)