From ff39e2e4961e2962f4b6c556363470f9bd786957 Mon Sep 17 00:00:00 2001 From: Alex X Date: Fri, 24 May 2024 11:04:26 +0300 Subject: [PATCH] Change import log for hass module from debug to trace --- internal/hass/hass.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/hass/hass.go b/internal/hass/hass.go index 61113959..cd95ffe1 100644 --- a/internal/hass/hass.go +++ b/internal/hass/hass.go @@ -57,7 +57,7 @@ func Init() { // load static entries from Hass config if err := importConfig(conf.Mod.Config); err != nil { - log.Debug().Msgf("[hass] can't import config: %s", err) + log.Trace().Msgf("[hass] can't import config: %s", err) api.HandleFunc("api/hass", func(w http.ResponseWriter, _ *http.Request) { http.Error(w, "no hass config", http.StatusNotFound)