From 0724a9c2e1d349ecc79790457f3bd43300c34d78 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: