feat(log): change unhealthy log to debug level

This commit is contained in:
Quentin McGaw
2024-02-21 16:44:35 +00:00
parent 423a5c37e0
commit 0eed558b10
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package healthcheck
type Logger interface {
Debug(s string)
Info(s string)
Error(s string)
}