mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
3734815ada
- 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)
|
|
}
|