Only log active profile lookup on debug

This commit is contained in:
Theodor S. Midtlien
2026-09-22 17:37:27 +02:00
parent dc45215348
commit 485c905b88
+1 -1
View File
@@ -1513,7 +1513,7 @@ func (s *Server) getConfig(activeProf *profilemanager.ActiveProfileState) (*prof
_, err = os.Stat(cfgPath)
configExisted := !os.IsNotExist(err)
log.Infof("active profile config existed: %t, err %v", configExisted, err)
log.Debugf("active profile config existed: %t, err %v", configExisted, err)
config, err := profilemanager.ReadConfig(cfgPath)
if err != nil {