diff --git a/src/primary/background.py b/src/primary/background.py index 53913d59..7e057c20 100644 --- a/src/primary/background.py +++ b/src/primary/background.py @@ -265,7 +265,7 @@ def app_specific_loop(app_type: str) -> None: # Get the current cap status for logging from src.primary.stats_manager import get_hourly_cap_status cap_status = get_hourly_cap_status(app_type) - app_logger.warning(f"{app_type.upper()} hourly cap reached {cap_status['current_usage']} of {cap_status['limit']} (app-specific limit). Skipping cycle!") + app_logger.info(f"{app_type.upper()} hourly cap reached {cap_status['current_usage']} of {cap_status['limit']} (app-specific limit). Skipping cycle!") continue # Skip this instance if API cap is exceeded except Exception as e: app_logger.error(f"Error checking hourly API cap for {app_type}: {e}", exc_info=True)