We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1385af commit 1519a1bCopy full SHA for 1519a1b
channelnotifier/log.go
@@ -27,19 +27,3 @@ func DisableLog() {
27
func UseLogger(logger btclog.Logger) {
28
log = logger
29
}
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