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 a4f8026d5d
commit 0724a9c2e1

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: