From 4741c1d33f3ed90ca03a8d8d249b883cc40a8f95 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Mon, 27 Jan 2025 16:20:47 +0000 Subject: [PATCH] Make failure to connect to OBS a warning, not error --- app/playlistmodel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/playlistmodel.py b/app/playlistmodel.py index 0e25d12..f96a4e4 100644 --- a/app/playlistmodel.py +++ b/app/playlistmodel.py @@ -1030,7 +1030,7 @@ class PlaylistModel(QAbstractTableModel): log.debug(f"{self}: OBS scene changed to '{scene_name}'") continue except obswebsocket.exceptions.ConnectionFailure: - log.error(f"{self}: OBS connection refused") + log.warning(f"{self}: OBS connection refused") return def previous_track_ended(self) -> None: