Skip to content

Commit e1385af

Browse files
committed
watchtower: remove dead logging code
1 parent 72ed30e commit e1385af

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

watchtower/log.go

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

0 commit comments

Comments
 (0)