Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/forge/controller/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ async def as_service(
}
cfg = ServiceConfig(**cfg_kwargs)

logger.info("Spawning Service for %s", cls.__name__)
logger.info(f"Spawning service {cls.__name__}")
service = Service(cfg, cls, actor_args, actor_kwargs)
await service.__initialize__()
service_interface = ServiceInterface(service, cls)
Expand Down Expand Up @@ -231,7 +231,7 @@ async def as_actor(cls: Type[T], *args, **actor_kwargs) -> T:
`procs`) are used to construct a ProcessConfig instance.
If no configuration was stored, defaults to a single process with no GPU.
"""
logger.info("Spawning single actor %s", cls.__name__)
logger.info(f"Spawning actor {cls.__name__}")
actor = await cls.launch(*args, **actor_kwargs)
# Register this actor with the provisioner so it can cleanly shut this down
await register_actor(actor)
Expand Down
Loading