diff --git a/src/routers/scene_router.py b/src/routers/scene_router.py index 44c61f7..7c29028 100644 --- a/src/routers/scene_router.py +++ b/src/routers/scene_router.py @@ -64,7 +64,7 @@ async def add(r: AddObjectDTO, background_tasks: BackgroundTasks): raise HTTPException(status_code=400, detail={"message": f"Player with id: {object.owner} does not exist"}) if player.add_agent_from_object(object) is False: - logger.warning(f"Player with id: {object.owner} cannot add agent") + logger.error(f"Player with id: {object.owner} cannot add agent") cost = player.calculate_slot_cost() raise HTTPException( status_code=400,