Make failure to connect to OBS a warning, not error

This commit is contained in:
Keith Edmunds 2025-01-27 16:20:47 +00:00
parent aa52f33d58
commit 4741c1d33f

View File

@ -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: