Log when autocert is enabled

This commit is contained in:
WeebDataHoarder
2025-04-10 06:43:24 +02:00
parent 4744048a38
commit 2eee5b20c2

View File

@@ -262,6 +262,10 @@ func main() {
}
acmeManager.Cache = autocert.DirCache(path.Join(*cachePath, "acme"))
}
slog.Warn(
"acme-autocert enabled",
"directory", *acmeAutocert,
)
}
var wg sync.WaitGroup