diff --git a/lib/crewai/src/crewai/agents/crew_agent_executor.py b/lib/crewai/src/crewai/agents/crew_agent_executor.py index de2315e3a9..dbb2edba52 100644 --- a/lib/crewai/src/crewai/agents/crew_agent_executor.py +++ b/lib/crewai/src/crewai/agents/crew_agent_executor.py @@ -1549,7 +1549,8 @@ def _show_logs(self, formatted_answer: AgentAction | AgentFinish) -> None: agent_role=self.agent.role, formatted_answer=formatted_answer, verbose=self.agent.verbose - or (hasattr(self, "crew") and getattr(self.crew, "verbose", False)), + or (hasattr(self, "crew") and getattr(self.crew, "verbose", False)) + or getattr(self, "ask_for_human_input", False), ), )