- Reduce "worrying" noise of icmp attempt failing - Only log when an action (restart the VPN) is taken
10 lines
186 B
Go
10 lines
186 B
Go
package healthcheck
|
|
|
|
type Logger interface {
|
|
Debugf(format string, args ...any)
|
|
Info(s string)
|
|
Infof(format string, args ...any)
|
|
Warnf(format string, args ...any)
|
|
Error(s string)
|
|
}
|