diff --git a/src/blueapi/core/context.py b/src/blueapi/core/context.py index af5a99315..219e736b7 100644 --- a/src/blueapi/core/context.py +++ b/src/blueapi/core/context.py @@ -111,7 +111,9 @@ def with_dodal_module(self, module: ModuleType, **kwargs) -> None: # If exceptions have occurred, we log them but we do not make blueapi # fall over if len(exceptions) > 0: - LOGGER.warning(f"{len(exceptions)} device(s) failed to connect") + LOGGER.warning( + f"{len(exceptions)} exceptions occurred while instantiating devices" + ) LOGGER.exception(NotConnected(exceptions)) def plan(self, plan: PlanGenerator) -> PlanGenerator: