From 62a3dfa445df4a4e285d9085c0f2fac46e017dfe Mon Sep 17 00:00:00 2001 From: itqop Date: Sat, 28 Jun 2025 19:51:41 +0300 Subject: [PATCH] Fix typo and logs --- hh_bot/config/logging_config.py | 2 +- hh_bot/core/job_application_manager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hh_bot/config/logging_config.py b/hh_bot/config/logging_config.py index 4af8ba4..8e2ca32 100644 --- a/hh_bot/config/logging_config.py +++ b/hh_bot/config/logging_config.py @@ -12,7 +12,7 @@ class LoggingConfigurator: def setup_logging( log_level: int = logging.INFO, log_file: Optional[str] = None, - console_output: bool = True, + console_output: bool = False, ) -> None: """ Настройка системы логирования diff --git a/hh_bot/core/job_application_manager.py b/hh_bot/core/job_application_manager.py index 3295838..8771177 100644 --- a/hh_bot/core/job_application_manager.py +++ b/hh_bot/core/job_application_manager.py @@ -36,7 +36,7 @@ class AutomationOrchestrator: return {"error": "Подходящие вакансии не найдены"} if use_ai and self._get_ai_service().is_available(): - vacancies = self._ai_filter_vacancies(vacancies[:3]) + vacancies = self._ai_filter_vacancies(vacancies) if not vacancies: return {"error": "После AI фильтрации подходящих вакансий нет"}