Skip to content

Commit 5f00b73

Browse files
committed
Downgrade HTTP API startup log messages to Debug
They provide little useful information outside debugging and anything at Info level is broadcast over shoutrrr.
1 parent 4a66a69 commit 5f00b73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/api/api.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (api *API) Start(block bool) error {
5959
log.Fatal(tokenMissingMsg)
6060
}
6161

62-
log.Info("Watchtower HTTP API started.")
62+
log.Debug("Watchtower HTTP API started.")
6363
if block {
6464
runHTTPServer()
6565
} else {
@@ -71,6 +71,6 @@ func (api *API) Start(block bool) error {
7171
}
7272

7373
func runHTTPServer() {
74-
log.Info("Serving HTTP")
74+
log.Debug("Serving HTTP")
7575
log.Fatal(http.ListenAndServe(":8080", nil))
7676
}

0 commit comments

Comments
 (0)