From 4e0d6a4306ba259f5d34f175b3a37afd185bf3b7 Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Sun, 13 Jul 2025 17:32:54 +0100 Subject: [PATCH] Should be an info, not warn --- dlna/dlnaserver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlna/dlnaserver.go b/dlna/dlnaserver.go index 92a466fc3..2a7d5e997 100644 --- a/dlna/dlnaserver.go +++ b/dlna/dlnaserver.go @@ -124,7 +124,7 @@ func New(ds model.DataStore, broker events.Broker, mediastreamer core.MediaStrea // Run starts the DLNA server (both SSDP and HTTP) with the given address func (s *DLNAServer) Run(ctx context.Context, addr string, port int) (err error) { - log.Warn("Starting DLNA Server") + log.Info("Starting DLNA Server") s.ctx = ctx if s.ssdp.HTTPConn == nil {